From 90289f7940eb5736dea650c6af9491d417d5656d Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 8 Jun 2022 16:24:39 +0000 Subject: [PATCH 001/180] move errant ODBC SLES 15 install file from root --- .../ibm_power_ppc64le}/11_odbc13_sles15_ppcle.mdx | 0 .../01_installing_linux/ibm_power_ppc64le/index.mdx | 2 +- .../13/03_installing_edb_odbc/01_installing_linux/index.mdx | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename product_docs/docs/odbc_connector/13/{ => 03_installing_edb_odbc/01_installing_linux/ibm_power_ppc64le}/11_odbc13_sles15_ppcle.mdx (100%) diff --git a/product_docs/docs/odbc_connector/13/11_odbc13_sles15_ppcle.mdx b/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/ibm_power_ppc64le/11_odbc13_sles15_ppcle.mdx similarity index 100% rename from product_docs/docs/odbc_connector/13/11_odbc13_sles15_ppcle.mdx rename to product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/ibm_power_ppc64le/11_odbc13_sles15_ppcle.mdx diff --git a/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/ibm_power_ppc64le/index.mdx b/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/ibm_power_ppc64le/index.mdx index e4e579e14ca..2577cc8dcbb 100644 --- a/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/ibm_power_ppc64le/index.mdx +++ b/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/ibm_power_ppc64le/index.mdx @@ -6,6 +6,6 @@ navTitle: "IBM Power (ppc64le)" For operating system-specific install instructions, see: - [RHEL 8](09_odbc13_rhel8_ppcle) - - [RHEL 7](10_odbc13_rhel7_ppcle) - [SLES 12](12_odbc13_sles12_ppcle) + - [SLES 15](11_odbc13_sles15_ppcle) diff --git a/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/index.mdx b/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/index.mdx index 6272a86e20d..121a0aa3f43 100644 --- a/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/index.mdx +++ b/product_docs/docs/odbc_connector/13/03_installing_edb_odbc/01_installing_linux/index.mdx @@ -12,7 +12,7 @@ For platform-specific install instructions, see: - Linux x86-64 (amd64): - [RHEL 8/OL 8](x86_amd64/01_odbc13_rhel8_x86) - + - [Rocky Linux 8/AlmaLinux 8](x86_amd64/02_odbc13_other_linux8_x86) - [RHEL 7/OL 7](x86_amd64/03_odbc13_rhel7_x86) - [CentOS 7](x86_amd64/04_odbc13_centos7_x86) @@ -23,9 +23,9 @@ For platform-specific install instructions, see: - Linux on IBM Power (ppc64le): - [RHEL 8](ibm_power_ppc64le/09_odbc13_rhel8_ppcle) - - [RHEL 7](ibm_power_ppc64le/10_odbc13_rhel7_ppcle) - [SLES 12](ibm_power_ppc64le/12_odbc13_sles12_ppcle) + - [SLES 15](ibm_power_ppc64le/11_odbc13_sles15_ppcle) From 424e2865a81606489c05e8a4c1ca1c940a203ae2 Mon Sep 17 00:00:00 2001 From: George Song Date: Tue, 30 Nov 2021 09:39:17 -0800 Subject: [PATCH 002/180] feat: initial consolidation of templatized install into docs repo --- install_template/.gitignore | 4 + install_template/.prettierrc.json | 3 + install_template/README.md | 75 +++++++ install_template/config.yaml | 36 ++++ install_template/main.mjs | 190 ++++++++++++++++++ install_template/package-lock.json | 116 +++++++++++ install_template/package.json | 17 ++ install_template/renders/.gitkeep | 0 .../templates/platformBase/_shared.njk | 24 +++ .../templates/platformBase/base.njk | 29 +++ .../templates/platformBase/centos-7.njk | 30 +++ .../templates/platformBase/centos-8.njk | 17 ++ .../templates/platformBase/debian-10.njk | 36 ++++ .../templates/platformBase/debian-9.njk | 9 + .../templates/platformBase/rhel-7.njk | 10 + .../templates/platformBase/rhel-8.njk | 21 ++ .../templates/platformBase/sles-12.njk | 46 +++++ .../_centos-rhel-connectdatabasecluster.njk | 6 + .../_centos-rhel-installcommand.njk | 1 + .../_centos-rhel-postinstall.njk | 11 + .../_debian-initialconfiguration.njk | 1 + .../edb-postgres-advanced-server/base.njk | 65 ++++++ .../edb-postgres-advanced-server/centos-7.njk | 14 ++ .../centos-7_ppc64le.njk | 2 + .../edb-postgres-advanced-server/centos-8.njk | 22 ++ .../debian-10.njk | 6 + .../edb-postgres-advanced-server/debian-9.njk | 6 + .../edb-postgres-advanced-server/rhel-7.njk | 10 + .../rhel-7_ppc64le.njk | 6 + .../edb-postgres-advanced-server/rhel-8.njk | 10 + .../edb-postgres-advanced-server/sles-12.njk | 6 + .../ubuntu-18.04.njk | 1 + .../ubuntu-20.04.njk | 1 + 33 files changed, 831 insertions(+) create mode 100644 install_template/.gitignore create mode 100644 install_template/.prettierrc.json create mode 100644 install_template/README.md create mode 100644 install_template/config.yaml create mode 100644 install_template/main.mjs create mode 100644 install_template/package-lock.json create mode 100644 install_template/package.json create mode 100644 install_template/renders/.gitkeep create mode 100644 install_template/templates/platformBase/_shared.njk create mode 100644 install_template/templates/platformBase/base.njk create mode 100644 install_template/templates/platformBase/centos-7.njk create mode 100644 install_template/templates/platformBase/centos-8.njk create mode 100644 install_template/templates/platformBase/debian-10.njk create mode 100644 install_template/templates/platformBase/debian-9.njk create mode 100644 install_template/templates/platformBase/rhel-7.njk create mode 100644 install_template/templates/platformBase/rhel-8.njk create mode 100644 install_template/templates/platformBase/sles-12.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-connectdatabasecluster.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/_debian-initialconfiguration.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/base.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/centos-7.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/centos-8.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/debian-10.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/debian-9.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-7.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-8.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/sles-12.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/ubuntu-20.04.njk diff --git a/install_template/.gitignore b/install_template/.gitignore new file mode 100644 index 00000000000..980480391dc --- /dev/null +++ b/install_template/.gitignore @@ -0,0 +1,4 @@ +node_modules/ +renders/* +!renders/.gitkeep +.DS_Store diff --git a/install_template/.prettierrc.json b/install_template/.prettierrc.json new file mode 100644 index 00000000000..bf357fbbc08 --- /dev/null +++ b/install_template/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "trailingComma": "all" +} diff --git a/install_template/README.md b/install_template/README.md new file mode 100644 index 00000000000..aa2b20a8800 --- /dev/null +++ b/install_template/README.md @@ -0,0 +1,75 @@ +# Parameterize Docs (Nunjucks ed.) + +A prototype exploring the use of [Nunjucks](https://mozilla.github.io/nunjucks/) to generate product instalation docs for many different product versions and platforms with a minimum of duplicated copy + +## Quick Start + +install dependencies + +```sh +npm install +``` + +run the main script + +```sh +node main.mjs +``` + +## Configuration + +The docs to be generated are defined in `config.yaml`. This file lists out all of the products to generate docs for, the platforms that product supports, and the supported versions for each platform. + +When generating docs, `main.mjs` will look for templates in `templates/products/[product-name]/`, where product name is all lower case, and spaces have been replaced with dashes. It will look for template files with names in the format below. It will use the first template found in the order below: + +1. `v{product version}_{platform name}_{platform architecture}.njk` + e.g. for EDB postgres advanced server 13 on centos 7 for x86_64, it would check for a file called `v13_centos-7_x86_64.njk` + +1. `v{product version}_{platform name}.njk` + e.g. for EDB postgres advanced server 13 on centos 7 for x86_64, it would check for a file called `v13_centos-7.njk` + +1. `{platform name}_{platform architecture}.njk` + e.g. for EDB postgres advanced server 13 on centos 7 for x86_64, it would check for a file called `centos-7_x86_64.njk` + +1. `{platform name}.njk` + e.g. for EDB postgres advanced server 13 on centos 7 for x86_64, it would check for a file called `centos-7.njk` + +## Writing Templates + +We are using Nunjucks as the templating language, which is a javascript implementation of Jinja. + +- [Nunjucks templating documentation](https://mozilla.github.io/nunjucks/templating.html) +- [Jinja templating documentation](https://jinja.palletsprojects.com/en/3.0.x/templates/) — most of this applies to nunjucks as well, and it is more detailed + +Context based on the config will be passed in automatically. The following can be accessed from within templates: + +- `product.name` — the name of the product we are rendering a template for. e.g. "EDB Postgres Advanced Server" +- `product.version` — the version of the product we are rendering a template for. e.g. "13" +- `platform.name` — the name of the platform we are rendering a template for. e.g. "CentOS 8" +- `platform.arch` — the architecture of the platform we are rendering a template for. e.g. "x86_64" + +### Example Template Structure + +After a template file is found, no rules are enforced on how that template should behave. That said, templates for EPAS docs have already been created and a general structure has been provided as an example of how future templates could be implemented. Here is an overview of how these templates are currently working + +#### `/templates/platformBase/base.njk` + +- All templates ultimitaly should inherit from this file. This is a good place to write copy that needs to be shared by all docs, regardless of the product being installed +- 3 blocks are currently available: + - `prerequisites` — This is where information like adding EDB repos will go + - `installCommand` — This is where the command to actually install the product will go + - `postinstall` — This is where commands like starting the EPAS server will go + +#### `/templates/platformBase/[platform name].njk` + +- These files are largely reposible for setting up the `prerequisites` and `installCommand` blocks +- Currently, they rely on a `packageName` macro to be set by a child template. This macro is being used in the `installCommand` block. +- You will notice there are no Ubuntu templates in the platformBase folder. This is because install instructions were the same as Debian 10, and so only the `debian-10.njk` file was created to reduce duplication. If Ubuntu specific instructions are needed, new template files could be created which inherit from `debian-10.njk`. +- The `centos-7.njk` template contains a conditional to include ppc64le specific instructions. To display these instructions, add `{% set includePPC = true %}` to a child template + +#### `/templates/products/edb-postgres-advanced-server/base.njk` + +- All EPAS templates inherit from this file at some point. This is a good place to store copy which is shared by all EPAS docs. +- This template will choose a `platformBase` template to inherit from based on the value of `platformBaseTemplate`, which must be set by a child template. +- the `packageName` macro used by the `platformBase` templates can be found in this template +- a `postinstall` block containing copy shared by all of the EPAS docs can be found here. That said, this block is extended by some child templates. diff --git a/install_template/config.yaml b/install_template/config.yaml new file mode 100644 index 00000000000..a5ae2f7f44f --- /dev/null +++ b/install_template/config.yaml @@ -0,0 +1,36 @@ +products: + - name: EDB Postgres Advanced Server + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [9.6, 10, 11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [9.6, 10, 11, 12, 13, 14] + - name: CentOS 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: x86_64 + supported versions: [9.6, 10, 11, 12, 13, 14] + - name: RHEL 7 + arch: ppc64le + supported versions: [9.6, 10, 11, 12, 13, 14] + - name: RHEL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 10 + arch: x86_64 + supported versions: [12, 13, 14] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [9.6, 11, 12] diff --git a/install_template/main.mjs b/install_template/main.mjs new file mode 100644 index 00000000000..c9a57560f83 --- /dev/null +++ b/install_template/main.mjs @@ -0,0 +1,190 @@ +import fs from "fs/promises"; +import { existsSync as fileExists } from "fs"; +import path from "path"; +import nunjucks from "nunjucks"; +import prettier from "prettier"; +import yaml from "yaml"; + +nunjucks.configure("templates", { throwOnUndefined: true, autoescape: false }); + +/** + * Loop through the config.yaml file and generate docs for every product/platform/supported version combination found. + * @returns void + */ +const run = async () => { + const config = yaml.parse(await fs.readFile("config.yaml", "utf8")); + + config.products.forEach((product) => { + product.platforms.forEach((platform) => { + platform["supported versions"].forEach((version) => { + renderDoc(product, platform, version); + }); + }); + }); + + return; +}; + +/** + * Composes the code needed to render a single installation docuement for a product/platform/version combination. + * @param product The product name we are generating a template for + * @param platform The platform and architecture we are generating docs for (e.g. { name: Centos 7, arch: x86_64 }) + * @param version The version of the product to generate docs for + * @returns void + */ +const renderDoc = (product, platform, version) => { + console.log( + `Starting render for ${product.name} ${version} on ${platform.name} ${platform.arch}`, + ); + + const template = findTemplate( + product.name, + version, + platform.name, + platform.arch, + ); + + if (template === false) { + return; + } + + console.log(` using template "${template}"`); + + const context = generateContext(product, platform, version); + + try { + writeDoc(template, context); + } catch (error) { + console.error("[ERROR] An exception occurred. Details below:"); + console.error(error); + process.exit(1); + } +}; + +/** + * Find an appropriate template file based on the config information passed in + * @param productName The product to render docs for. This is used as part of the path to the template file. + * @param productVersion The version of the product to render docs for. Used in some of the filenames checked for. + * @param platformName The name of the platform to render docs for. (e.g. Centos 7) + * @param platformArch The archictecture of the platform to render docs for. + * @returns The path to a applicable template file, or false if none is found. + */ +const findTemplate = ( + productName, + productVersion, + platformName, + platformArch, +) => { + const basePath = "products/" + formatStringForFile(productName); + const formattedPlatform = formatStringForFile(platformName); + + // Check if a file exists for the specific product version, platform, and architecture + const fullFilename = constructTemplatePath(basePath, [ + `v${productVersion}`, + formattedPlatform, + platformArch, + ]); + if (fileExists("templates/" + fullFilename)) { + return fullFilename; + } + + // Check if a file exists for the specific product version and platform + const versionPlatformFilename = constructTemplatePath(basePath, [ + `v${productVersion}`, + formattedPlatform, + ]); + if (fileExists("templates/" + versionPlatformFilename)) { + return versionPlatformFilename; + } + + // check if a file exists for a specific platform and architecture + const platformArchFilename = constructTemplatePath(basePath, [ + formattedPlatform, + platformArch, + ]); + if (fileExists("templates/" + platformArchFilename)) { + return platformArchFilename; + } + + // check if a file exists for a specific platform + const platformFilename = constructTemplatePath(basePath, [formattedPlatform]); + if (fileExists("templates/" + platformFilename)) { + return platformFilename; + } + + console.error( + `[ERROR] no template could be found\n` + + " Please add one of the following files:\n" + + ` ${fullFilename}\n` + + ` ${versionPlatformFilename}\n` + + ` ${platformArchFilename}\n` + + ` ${platformFilename}\n`, + ); + + return false; +}; + +/** + * Format a string into the format expected when used in file or folder names. + * Converts a string to lowercase, and replaces all spaces with dashes + * @param string + * @returns a string formatted for file names + */ +const formatStringForFile = (string) => { + return string.toLowerCase().replace(/ /g, "-"); +}; + +/** + * Creates a filename based on the filenameParts passed in, and appends to to a base path + * @param basePath A file path formatted string which will be used as a prefix to the generated filename. e.g "products/product-name/" + * @param filenameParts An array of strings to combine into a template name. e.g. ["first-part", "second", "last-part"] + * @returns A file path which refers to the expected location of a nunjucks template, with each filename part seperated by an underscore. + * e.g. "products/product-name/first-part_second_last-part.njk" + */ +const constructTemplatePath = (basePath, filenameParts) => { + return path.join(basePath, filenameParts.join("_") + ".njk"); +}; + +/** + * Creates the context object used by nunjucks templates + * @param product The product to render docs for, from the config. + * @param platform The platform to render docs for, from the config. + * @param version The version of the product to render docs for + * @returns a context object. + */ +const generateContext = (product, platform, version) => { + return { + product: { + name: product.name, + version: version, + }, + platform: { + name: platform.name, + arch: platform.arch, + }, + }; +}; + +/** + * actually render a nunjucks template with context, and write the result to the "/renders" folder. + * @param template The path to a nunjucks tempalte to render. + * @param context An object passed into the nunjucks template which will be used to render some variable content. + */ +const writeDoc = (template, context) => { + const render = prettier.format(nunjucks.render(template, context), { + parser: "mdx", + }); + const filename = + [ + formatStringForFile(context.product.name), + context.product.version, + formatStringForFile(context.platform.name), + context.platform.arch, + ].join("_") + ".mdx"; + + console.log(` writing ${filename}`); + + fs.writeFile(`renders/${filename}`, render); +}; + +run(); diff --git a/install_template/package-lock.json b/install_template/package-lock.json new file mode 100644 index 00000000000..ea5b068ec97 --- /dev/null +++ b/install_template/package-lock.json @@ -0,0 +1,116 @@ +{ + "name": "nunjucks-test", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "nunjucks-test", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "nunjucks": "^3.2.3", + "prettier": "^2.4.0", + "yaml": "^1.10.2" + } + }, + "node_modules/a-sync-waterfall": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz", + "integrity": "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==" + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/nunjucks": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.3.tgz", + "integrity": "sha512-psb6xjLj47+fE76JdZwskvwG4MYsQKXUtMsPh6U0YMvmyjRtKRFcxnlXGWglNybtNTNVmGdp94K62/+NjF5FDQ==", + "dependencies": { + "a-sync-waterfall": "^1.0.0", + "asap": "^2.0.3", + "commander": "^5.1.0" + }, + "bin": { + "nunjucks-precompile": "bin/precompile" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "chokidar": "^3.3.0" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/prettier": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.0.tgz", + "integrity": "sha512-DsEPLY1dE5HF3BxCRBmD4uYZ+5DCbvatnolqTqcxEgKVZnL2kUfyu7b8pPQ5+hTBkdhU9SLUmK0/pHb07RE4WQ==", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + } + }, + "dependencies": { + "a-sync-waterfall": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz", + "integrity": "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + }, + "nunjucks": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.3.tgz", + "integrity": "sha512-psb6xjLj47+fE76JdZwskvwG4MYsQKXUtMsPh6U0YMvmyjRtKRFcxnlXGWglNybtNTNVmGdp94K62/+NjF5FDQ==", + "requires": { + "a-sync-waterfall": "^1.0.0", + "asap": "^2.0.3", + "commander": "^5.1.0" + } + }, + "prettier": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.0.tgz", + "integrity": "sha512-DsEPLY1dE5HF3BxCRBmD4uYZ+5DCbvatnolqTqcxEgKVZnL2kUfyu7b8pPQ5+hTBkdhU9SLUmK0/pHb07RE4WQ==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + } +} diff --git a/install_template/package.json b/install_template/package.json new file mode 100644 index 00000000000..98b76907c43 --- /dev/null +++ b/install_template/package.json @@ -0,0 +1,17 @@ +{ + "name": "nunjucks-test", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "nunjucks": "^3.2.3", + "prettier": "^2.4.0", + "yaml": "^1.10.2" + } +} diff --git a/install_template/renders/.gitkeep b/install_template/renders/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d diff --git a/install_template/templates/platformBase/_shared.njk b/install_template/templates/platformBase/_shared.njk new file mode 100644 index 00000000000..6596391d63e --- /dev/null +++ b/install_template/templates/platformBase/_shared.njk @@ -0,0 +1,24 @@ +{% macro centosRepositoryConfiguration(packageManager, epelRepo) %} +1. Set up the EDB repository: + + ```sh + {{ packageManager }} -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + ``` + This creates the /etc/yum.repos.d/edb.repo configuration file. + +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: + + ```sh + sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + ``` + +1. Install EPEL repository and refresh the cache: + + ```sh + {{ packageManager }} -y install {{ epelRepo }} + {{ packageManager }} makecache + ``` +{% endmacro %} + +{% macro centosInstallCommand(packageManager, packageName) %}{{packageManager}} -y install {{ packageName }}{% endmacro %} \ No newline at end of file diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk new file mode 100644 index 00000000000..5ddb3481f3f --- /dev/null +++ b/install_template/templates/platformBase/base.njk @@ -0,0 +1,29 @@ +# Installing {{ product.name }} {{ product.version }} on {{ platform.name }} {{ platform.arch }} + +This topic describes how to install {{ product.name }} and includes steps for getting started with your cluster and creating a database. + +There are three steps to completing an installation: + +- Setting up the repository +- Installing the package +- Performing the initial configuration + +For each step, you must be logged in as superuser. + +To log in as a superuser: + +```sh +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) + +{% block prerequisites %}{% endblock prerequisites %} + +## Installing the Package +{% block installCommand %}{% endblock installCommand %} + +## Initial Configuration +{% block postinstall %}{% endblock postinstall %} \ No newline at end of file diff --git a/install_template/templates/platformBase/centos-7.njk b/install_template/templates/platformBase/centos-7.njk new file mode 100644 index 00000000000..c04aea6e5b0 --- /dev/null +++ b/install_template/templates/platformBase/centos-7.njk @@ -0,0 +1,30 @@ +{% extends "platformBase/base.njk" %} +{% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} +{% block prerequisites %} +{% if includePPC %} +1. Install Advance Toolchain + + ```sh + rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + + cat > /etc/yum.repos.d/advance-toolchain.repo < /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + ``` + +1. Replace '' and '' below with your username and password for the EDB repositories: + ```sh + echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + ``` +{% endblock repoAuth %} + +1. Add support for secure APT repositories: + ```sh + apt-get -y install apt-transport-https + ``` + +1. Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + ```sh + wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + ``` + +1. Update the repository meta data: + ```sh + apt-get update + ``` +{% endblock prerequisites %} + +{% block installCommand %} +```sh +apt-get -y install {{ packageName }} +``` +{% endblock installCommand %} diff --git a/install_template/templates/platformBase/debian-9.njk b/install_template/templates/platformBase/debian-9.njk new file mode 100644 index 00000000000..212a616f965 --- /dev/null +++ b/install_template/templates/platformBase/debian-9.njk @@ -0,0 +1,9 @@ +{% extends "platformBase/debian-10.njk" %} + +{% block repoAuth %} +1. Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + ```sh + echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + ``` + This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. +{% endblock repoAuth %} diff --git a/install_template/templates/platformBase/rhel-7.njk b/install_template/templates/platformBase/rhel-7.njk new file mode 100644 index 00000000000..029f2d38288 --- /dev/null +++ b/install_template/templates/platformBase/rhel-7.njk @@ -0,0 +1,10 @@ +{% extends "platformBase/centos-7.njk" %} + +{% block prerequisites %} +{{ super() }} + +### Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories +```sh +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" +``` +{% endblock prerequisites %} diff --git a/install_template/templates/platformBase/rhel-8.njk b/install_template/templates/platformBase/rhel-8.njk new file mode 100644 index 00000000000..a695102f84b --- /dev/null +++ b/install_template/templates/platformBase/rhel-8.njk @@ -0,0 +1,21 @@ +{% extends "platformBase/base.njk" %} +{% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} +{% block prerequisites %} +{{ centosRepositoryConfiguration("dnf", "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm") }} +### Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +```sh +ARCH=$( /bin/arch ) +subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" +``` + +### Disable the built-in PostgreSQL module: +```sh +dnf -qy module disable postgresql +``` +{% endblock prerequisites %} + +{% block installCommand %} +```sh +{{ centosInstallCommand("dnf", packageName) }} +``` +{% endblock installCommand %} diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk new file mode 100644 index 00000000000..e074b06c2d4 --- /dev/null +++ b/install_template/templates/platformBase/sles-12.njk @@ -0,0 +1,46 @@ +{% extends "platformBase/base.njk" %} +{% block prerequisites %} +### Install the repository configuration +```sh +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo +``` + +### Refresh the metadata +```sh +zypper refresh +``` + +### Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +```sh +zypper install SUSEConnect +``` + +### Register the host with SUSE, allowing access to SUSE repositories +Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +```sh +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.4/x86_64 +SUSEConnect -p sle-sdk/12.4/x86_64 +``` + +### Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +``` + +### Refresh the metadata +```sh +zypper refresh +``` + +# Install OpenJDK (version 1.8) for Java based components +```sh +zypper -n install java-1_8_0-openjdk +``` +{% endblock prerequisites %} + +{% block installCommand %} +```sh +zypper -n install {{ packageName }} +``` +{% endblock installCommand %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-connectdatabasecluster.njk b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-connectdatabasecluster.njk new file mode 100644 index 00000000000..48f885404e2 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-connectdatabasecluster.njk @@ -0,0 +1,6 @@ +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as{{ product.version }}/bin/pg_ctl status -D /var/lib/edb/as{{ product.version }}/data + ``` + See [Managing Cluster > Managing Services] for more information. \ No newline at end of file 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 new file mode 100644 index 00000000000..f68d90274aa --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk @@ -0,0 +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 diff --git a/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk new file mode 100644 index 00000000000..19d7f24d014 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk @@ -0,0 +1,11 @@ +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as{{ product.version }}/bin/edb-as-{{ product.version | replace(".", "") }}-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-{{ product.version }} + ``` diff --git a/install_template/templates/products/edb-postgres-advanced-server/_debian-initialconfiguration.njk b/install_template/templates/products/edb-postgres-advanced-server/_debian-initialconfiguration.njk new file mode 100644 index 00000000000..8613674b5aa --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/_debian-initialconfiguration.njk @@ -0,0 +1 @@ +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. diff --git a/install_template/templates/products/edb-postgres-advanced-server/base.njk b/install_template/templates/products/edb-postgres-advanced-server/base.njk new file mode 100644 index 00000000000..8e0c3993020 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/base.njk @@ -0,0 +1,65 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as{{ product.version | replace(".", "") }}-server{% endset %} +{% block postinstall %} +## Connecting to Your Database cluster + +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. + +{% block connectdatabasecluster %}{% endblock connectdatabasecluster %} +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` +{% endblock postinstall %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/centos-7.njk b/install_template/templates/products/edb-postgres-advanced-server/centos-7.njk new file mode 100644 index 00000000000..82c31735212 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/centos-7.njk @@ -0,0 +1,14 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} +{% block installCommand %} +{{ super() }} +{% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} +{% endblock installCommand %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} +{% block connectdatabasecluster %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-connectdatabasecluster.njk" %} +{{ super() }} +{% endblock connectdatabasecluster %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/centos-7_ppc64le.njk b/install_template/templates/products/edb-postgres-advanced-server/centos-7_ppc64le.njk new file mode 100644 index 00000000000..2c7a1d9160c --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-postgres-advanced-server/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/centos-8.njk b/install_template/templates/products/edb-postgres-advanced-server/centos-8.njk new file mode 100644 index 00000000000..53ce94347a9 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/centos-8.njk @@ -0,0 +1,22 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "centos-8" %} +{% block prerequisites %} +{{ super() }} +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` +{% endblock prerequisites %} +{% block installCommand %} +{{ super() }} +{% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} +{% endblock installCommand %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} +{% block connectdatabasecluster %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-connectdatabasecluster.njk" %} +{{ super() }} +{% endblock connectdatabasecluster %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/debian-10.njk b/install_template/templates/products/edb-postgres-advanced-server/debian-10.njk new file mode 100644 index 00000000000..2088e274ad2 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/debian-10.njk @@ -0,0 +1,6 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_debian-initialconfiguration.njk" %} +{{ super() }} +{% endblock postinstall %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/debian-9.njk b/install_template/templates/products/edb-postgres-advanced-server/debian-9.njk new file mode 100644 index 00000000000..876f9e82bbe --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/debian-9.njk @@ -0,0 +1,6 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_debian-initialconfiguration.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7.njk new file mode 100644 index 00000000000..31523669ec0 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-7.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} +{% block installCommand %} +{{ super() }} +{% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} +{% endblock installCommand %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..9e971d223ca --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk @@ -0,0 +1,6 @@ +{% extends "products/edb-postgres-advanced-server/rhel-7.njk" %} +{% set includePPC = true %} +{% block installCommand %} +{{ super() }} +{% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} +{% endblock installCommand %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8.njk new file mode 100644 index 00000000000..0cc2e6b4490 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} +{% block installCommand %} +{{ super() }} +{% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} +{% endblock installCommand %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/sles-12.njk b/install_template/templates/products/edb-postgres-advanced-server/sles-12.njk new file mode 100644 index 00000000000..64ac8240b95 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/sles-12.njk @@ -0,0 +1,6 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/ubuntu-18.04.njk b/install_template/templates/products/edb-postgres-advanced-server/ubuntu-18.04.njk new file mode 100644 index 00000000000..367bf0e6b44 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-postgres-advanced-server/debian-10.njk" %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/ubuntu-20.04.njk b/install_template/templates/products/edb-postgres-advanced-server/ubuntu-20.04.njk new file mode 100644 index 00000000000..367bf0e6b44 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-postgres-advanced-server/debian-10.njk" %} From b8b703216b2922ae92b2ebaf1ea7df6d6c98900e Mon Sep 17 00:00:00 2001 From: Jake Salgado <5466068+jaek-s@users.noreply.github.com> Date: Tue, 30 Nov 2021 11:27:15 -0700 Subject: [PATCH 003/180] update dependencies --- install_template/package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install_template/package-lock.json b/install_template/package-lock.json index ea5b068ec97..88a6ed3df03 100644 --- a/install_template/package-lock.json +++ b/install_template/package-lock.json @@ -57,9 +57,9 @@ } }, "node_modules/prettier": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.0.tgz", - "integrity": "sha512-DsEPLY1dE5HF3BxCRBmD4uYZ+5DCbvatnolqTqcxEgKVZnL2kUfyu7b8pPQ5+hTBkdhU9SLUmK0/pHb07RE4WQ==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.0.tgz", + "integrity": "sha512-FM/zAKgWTxj40rH03VxzIPdXmj39SwSjwG0heUcNFwI+EMZJnY93yAiKXM3dObIKAM5TA88werc8T/EwhB45eg==", "bin": { "prettier": "bin-prettier.js" }, @@ -103,9 +103,9 @@ } }, "prettier": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.0.tgz", - "integrity": "sha512-DsEPLY1dE5HF3BxCRBmD4uYZ+5DCbvatnolqTqcxEgKVZnL2kUfyu7b8pPQ5+hTBkdhU9SLUmK0/pHb07RE4WQ==" + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.0.tgz", + "integrity": "sha512-FM/zAKgWTxj40rH03VxzIPdXmj39SwSjwG0heUcNFwI+EMZJnY93yAiKXM3dObIKAM5TA88werc8T/EwhB45eg==" }, "yaml": { "version": "1.10.2", From 06a8f2c4c1eafc805a44bd4df1b5e0b9f8685643 Mon Sep 17 00:00:00 2001 From: Jake Salgado <5466068+jaek-s@users.noreply.github.com> Date: Tue, 30 Nov 2021 14:26:59 -0700 Subject: [PATCH 004/180] dockerize template rendering process --- .dockerignore | 1 + docker/docker-compose.install-template.yaml | 16 ++++++++++++++++ docker/images/Dockerfile.install-template | 7 +++++++ package.json | 2 ++ 4 files changed, 26 insertions(+) create mode 100644 docker/docker-compose.install-template.yaml create mode 100644 docker/images/Dockerfile.install-template diff --git a/.dockerignore b/.dockerignore index a48cc639476..096697b3f7c 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,3 +4,4 @@ !gatsby*.js !package*.json !requirements-ci.txt +!install_template diff --git a/docker/docker-compose.install-template.yaml b/docker/docker-compose.install-template.yaml new file mode 100644 index 00000000000..6f8740f15b9 --- /dev/null +++ b/docker/docker-compose.install-template.yaml @@ -0,0 +1,16 @@ +version: "3.8" + +services: + install-docs-template-renderer: + build: + context: ../ + dockerfile: docker/images/Dockerfile.install-template + image: edb/docs-install-template + container_name: docs-install-template + hostname: docs-install-template + volumes: + - ../:/app/docs + - ../install_template/templates:/app/templates:ro + - ../install_template/config.yaml:/app/config.yaml:ro + - ../install_template/renders:/app/renders + command: node main.mjs diff --git a/docker/images/Dockerfile.install-template b/docker/images/Dockerfile.install-template new file mode 100644 index 00000000000..8bb7bbc263b --- /dev/null +++ b/docker/images/Dockerfile.install-template @@ -0,0 +1,7 @@ +FROM node:14-alpine + +RUN npm install -g npm@7 +WORKDIR /app +COPY install_template/main.mjs . +COPY install_template/package*.json . +RUN npm i diff --git a/package.json b/package.json index 48ad8468d37..468545451e5 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,8 @@ "docker:rebuild": "docker-compose -f docker/docker-compose.quickstart.yaml build --pull --no-cache", "fix-mtimes": "python3 scripts/source/git-restore-mtime.py --force", "format": "prettier --write src/**/*.js gatsby-*.js", + "install-docs:build": "docker-compose -f docker/docker-compose.install-template.yaml up", + "install-docs:rebuild-docker-image": "docker-compose -f docker/docker-compose.install-template.yaml build --pull --no-cache", "logs": "docker-compose -f docker/docker-compose.quickstart.yaml logs -f", "pdf:build": "docker-compose -f docker/docker-compose.build-pdf.yaml run --rm --entrypoint scripts/pdf/generate_pdf.py docs-pdf-builder", "pdf:build-all": "for i in product_docs/docs/**/*/ ; do echo \"$i\"; npm run pdf:build ${i%} || exit 1; done", From 22643ba564cf5e9aa2006052277d3c2ba684f153 Mon Sep 17 00:00:00 2001 From: Jake Salgado <5466068+jaek-s@users.noreply.github.com> Date: Tue, 30 Nov 2021 14:43:40 -0700 Subject: [PATCH 005/180] update documentation to account for dockerization of templating script --- install_template/README.md | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/install_template/README.md b/install_template/README.md index aa2b20a8800..2a75da4b705 100644 --- a/install_template/README.md +++ b/install_template/README.md @@ -1,26 +1,19 @@ -# Parameterize Docs (Nunjucks ed.) +# Install Docs Templates -A prototype exploring the use of [Nunjucks](https://mozilla.github.io/nunjucks/) to generate product instalation docs for many different product versions and platforms with a minimum of duplicated copy +This script allows the generation of product instalation docs for many different product versions and platforms with a minimum of duplicated copy. [Nunjucks](https://mozilla.github.io/nunjucks/) is used as our templating engine. ## Quick Start -install dependencies +The following commands can be run from the Docs project directory. -```sh -npm install -``` - -run the main script - -```sh -node main.mjs -``` +- `npm run install-docs:build` — Renders the templates and generates the final install doc files. +- `npm run install-docs:rebuild-docker-container` — Rebuilds the docker container used to render templates. ## Configuration The docs to be generated are defined in `config.yaml`. This file lists out all of the products to generate docs for, the platforms that product supports, and the supported versions for each platform. -When generating docs, `main.mjs` will look for templates in `templates/products/[product-name]/`, where product name is all lower case, and spaces have been replaced with dashes. It will look for template files with names in the format below. It will use the first template found in the order below: +When generating docs, this script will look for templates in `templates/products/[product-name]/`, where product name is all lower case, and spaces have been replaced with dashes. It will look for template files with names in the format below. It will use the first template found in the order below: 1. `v{product version}_{platform name}_{platform architecture}.njk` e.g. for EDB postgres advanced server 13 on centos 7 for x86_64, it would check for a file called `v13_centos-7_x86_64.njk` @@ -36,7 +29,7 @@ When generating docs, `main.mjs` will look for templates in `templates/products/ ## Writing Templates -We are using Nunjucks as the templating language, which is a javascript implementation of Jinja. +We are using Nunjucks as the templating engine, which is a javascript implementation of Jinja. - [Nunjucks templating documentation](https://mozilla.github.io/nunjucks/templating.html) - [Jinja templating documentation](https://jinja.palletsprojects.com/en/3.0.x/templates/) — most of this applies to nunjucks as well, and it is more detailed @@ -48,7 +41,7 @@ Context based on the config will be passed in automatically. The following can b - `platform.name` — the name of the platform we are rendering a template for. e.g. "CentOS 8" - `platform.arch` — the architecture of the platform we are rendering a template for. e.g. "x86_64" -### Example Template Structure +### Template Structure After a template file is found, no rules are enforced on how that template should behave. That said, templates for EPAS docs have already been created and a general structure has been provided as an example of how future templates could be implemented. Here is an overview of how these templates are currently working From 807a32b7f9ad57cdf89954b6bf07e399c60e5086 Mon Sep 17 00:00:00 2001 From: George Song Date: Wed, 1 Dec 2021 11:06:09 -0800 Subject: [PATCH 006/180] build: use `run` instead of `up` so we don't leave orphaned containers --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 468545451e5..16f404774ae 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "docker:rebuild": "docker-compose -f docker/docker-compose.quickstart.yaml build --pull --no-cache", "fix-mtimes": "python3 scripts/source/git-restore-mtime.py --force", "format": "prettier --write src/**/*.js gatsby-*.js", - "install-docs:build": "docker-compose -f docker/docker-compose.install-template.yaml up", + "install-docs:build": "docker-compose -f docker/docker-compose.install-template.yaml run --rm install-docs-template-renderer", "install-docs:rebuild-docker-image": "docker-compose -f docker/docker-compose.install-template.yaml build --pull --no-cache", "logs": "docker-compose -f docker/docker-compose.quickstart.yaml logs -f", "pdf:build": "docker-compose -f docker/docker-compose.build-pdf.yaml run --rm --entrypoint scripts/pdf/generate_pdf.py docs-pdf-builder", From e01141a838946d5bc71fccc484600978a9174312 Mon Sep 17 00:00:00 2001 From: George Song Date: Wed, 1 Dec 2021 11:53:29 -0800 Subject: [PATCH 007/180] build: docker image and container optimizations * Make the image as small as possible * Install latest dependencies even if image hasn't been updated --- docker/docker-compose.install-template.yaml | 8 +++++--- docker/images/Dockerfile.install-template | 14 +++++++++++--- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/docker/docker-compose.install-template.yaml b/docker/docker-compose.install-template.yaml index 6f8740f15b9..585aeef71c9 100644 --- a/docker/docker-compose.install-template.yaml +++ b/docker/docker-compose.install-template.yaml @@ -8,9 +8,11 @@ services: image: edb/docs-install-template container_name: docs-install-template hostname: docs-install-template + command: sh -c "npm i && node main.mjs" volumes: - - ../:/app/docs - - ../install_template/templates:/app/templates:ro - ../install_template/config.yaml:/app/config.yaml:ro + - ../install_template/main.mjs:/app/main.mjs:ro + - ../install_template/package-lock.json:/app/package-lock.json + - ../install_template/package.json:/app/package.json + - ../install_template/templates:/app/templates:ro - ../install_template/renders:/app/renders - command: node main.mjs diff --git a/docker/images/Dockerfile.install-template b/docker/images/Dockerfile.install-template index 8bb7bbc263b..a95aa5e974a 100644 --- a/docker/images/Dockerfile.install-template +++ b/docker/images/Dockerfile.install-template @@ -1,7 +1,15 @@ -FROM node:14-alpine +FROM node:14-alpine as base RUN npm install -g npm@7 WORKDIR /app -COPY install_template/main.mjs . -COPY install_template/package*.json . + + +FROM base as dependencies + +COPY install_template/package*.json ./ RUN npm i + + +FROM base as renderer + +COPY --from=dependencies /app/node_modules /app/node_modules From cd42d08051d9a946bf6a71cea81ae2cea6d865bc Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Thu, 13 Jan 2022 12:19:00 +0530 Subject: [PATCH 008/180] Added local repo and RHEL8 CentOS8 OL8 steps Added local repo and RHEL8 CentOS8 OL8 steps --- install_template/config.yaml | 9 ++ .../templates/platformBase/base.njk | 10 +-- .../templates/platformBase/centos-7.njk | 3 + .../templates/platformBase/rhel-7.njk | 63 ++++++++++++- .../platformBase/rhel-8-centos-8-ol-8.njk | 31 +++++++ .../templates/platformBase/rhel-8.njk | 30 ++++--- .../templates/platformBase/sles-12.njk | 89 ++++++++++--------- .../rhel-7_local.njk | 2 + .../rhel-7_ppc64le.njk | 1 - .../rhel-8-or-centos-8-or-ol-8.njk | 10 +++ .../rhel-8_Linux on IBM Power (ppc64le).njk | 2 + 11 files changed, 183 insertions(+), 67 deletions(-) create mode 100644 install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk diff --git a/install_template/config.yaml b/install_template/config.yaml index a5ae2f7f44f..3122ec8cc62 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -16,9 +16,15 @@ products: - name: RHEL 7 arch: ppc64le supported versions: [9.6, 10, 11, 12, 13, 14] + - name: RHEL 7 + arch: local + supported versions: [9.6, 10, 11, 12, 13, 14] - name: RHEL 8 arch: x86_64 supported versions: [11, 12, 13, 14] + - name: RHEL 8 + arch: Linux on IBM Power (ppc64le) + supported versions: [11, 12, 13, 14] - name: Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] @@ -34,3 +40,6 @@ products: - name: SLES 12 arch: x86_64 supported versions: [9.6, 11, 12] + - name: RHEL 8 or CentOS 8 or OL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 5ddb3481f3f..580f937671c 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -1,12 +1,9 @@ # Installing {{ product.name }} {{ product.version }} on {{ platform.name }} {{ platform.arch }} -This topic describes how to install {{ product.name }} and includes steps for getting started with your cluster and creating a database. - -There are three steps to completing an installation: +This topic describes how to install {{ product.name }} and includes two steps to completing an installation: - Setting up the repository - Installing the package -- Performing the initial configuration For each step, you must be logged in as superuser. @@ -18,12 +15,11 @@ 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. To register with EDB to receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). {% block prerequisites %}{% endblock prerequisites %} ## Installing the Package + {% block installCommand %}{% endblock installCommand %} -## Initial Configuration -{% block postinstall %}{% endblock postinstall %} \ No newline at end of file diff --git a/install_template/templates/platformBase/centos-7.njk b/install_template/templates/platformBase/centos-7.njk index c04aea6e5b0..1b3ffdaf386 100644 --- a/install_template/templates/platformBase/centos-7.njk +++ b/install_template/templates/platformBase/centos-7.njk @@ -27,4 +27,7 @@ ```sh {{ centosInstallCommand("yum", packageName) }} ``` +!!! Note + Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + {% endblock installCommand %} diff --git a/install_template/templates/platformBase/rhel-7.njk b/install_template/templates/platformBase/rhel-7.njk index 029f2d38288..cb3b88ce18f 100644 --- a/install_template/templates/platformBase/rhel-7.njk +++ b/install_template/templates/platformBase/rhel-7.njk @@ -3,8 +3,63 @@ {% block prerequisites %} {{ super() }} -### Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories -```sh -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" -``` +1. Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: + + ```sh + subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + ``` +{% if includeLOCAL %} + +1. Install the `createrepo` utility on the source server to create the local repository: + ```sh + yum install -y yum-utils createrepo + ``` + +1. Import EDB GPG key installed from edb-repo and also the other repositories: + ```sh + rpm --import /etc/pki/rpm-gpg/* + ``` + +1. Create the download directory, download all the required packages and populate it using `createrepo`: + ```sh + $ mkdir -p /tmp/yumdownloaddir + $ cd /tmp/yumdownloaddir + $ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart + $ createrepo /tmp/yumdownloaddir + ``` + +1. Zip up the download directory, ready to be shipped to the target server(s): + ```sh + $ cd /tmp + $ tar -zcvf yumdownloaddir.tgz yumdownloaddir + ``` + +1. Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. + ```sh + sudo su - + tar -xvf /tmp/yumdownloaddir.tgz + ``` + +1. Install the edb repo file and import the EDB GPG key from the archive: + ```sh + yum localinstall yumdownloaddir/edb-repo*.rpm + rpm --import /etc/pki/rpm-gpg/* + ``` + This creates the /etc/yum.repos.d/edb.repo configuration file. + +1. Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: + ```sh + cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo + vi /etc/yum.repos.d/edb_local.repo + [edb-localrepo] + name=EnterpriseDB Localrepo for install without internet access + baseurl=file:///tmp/yumdownloaddir/ + enabled=1 + repo_gpgcheck=0 + gpgcheck=1 + gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY + #skip_if_unavailable = 1 + #keepcache = 0 + ``` +{% endif %} {% endblock prerequisites %} diff --git a/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk b/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk new file mode 100644 index 00000000000..85bdd223e92 --- /dev/null +++ b/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk @@ -0,0 +1,31 @@ +{% extends "platformBase/base.njk" %} +{% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} +{% block prerequisites %} +{{ centosRepositoryConfiguration("dnf", "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm") }} +1. The EPEL packages may depend on packages from other repositories, to download the packages enable the platform-specific repositories. + +- For RHEL, the `codeready-builder-for-rhel-8-*-rpms` repository: + + ```sh + ARCH=$( /bin/arch ) + subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + ``` +- For CentOS, the `powertools` repository: + + ```sh + dnf config-manager --set-enabled powertools + ``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` +{% endblock prerequisites %} +{% block installCommand %} + ```sh + {{ centosInstallCommand("dnf", packageName) }} + ``` +!!! Note + Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. +{% endblock installCommand %} diff --git a/install_template/templates/platformBase/rhel-8.njk b/install_template/templates/platformBase/rhel-8.njk index a695102f84b..64c7d60ef80 100644 --- a/install_template/templates/platformBase/rhel-8.njk +++ b/install_template/templates/platformBase/rhel-8.njk @@ -1,21 +1,23 @@ {% extends "platformBase/base.njk" %} {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} {% block prerequisites %} -{{ centosRepositoryConfiguration("dnf", "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm") }} -### Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -```sh -ARCH=$( /bin/arch ) -subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" -``` +{{ centosRepositoryConfiguration("dnf", "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 -### Disable the built-in PostgreSQL module: -```sh -dnf -qy module disable postgresql -``` -{% endblock prerequisites %} + ```sh + ARCH=$( /bin/arch ) + subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + ``` +1. Disable the built-in PostgreSQL module: + ```sh + dnf -qy module disable postgresql + ``` +{% endblock prerequisites %} {% block installCommand %} -```sh -{{ centosInstallCommand("dnf", packageName) }} -``` + ```sh + {{ centosInstallCommand("dnf", packageName) }} + ``` +!!! Note + Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. {% endblock installCommand %} diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index e074b06c2d4..4fcdee23008 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,46 +1,53 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -### Install the repository configuration -```sh -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -``` - -### Refresh the metadata -```sh -zypper refresh -``` - -### Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -```sh -zypper install SUSEConnect -``` - -### Register the host with SUSE, allowing access to SUSE repositories -Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -```sh -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.4/x86_64 -SUSEConnect -p sle-sdk/12.4/x86_64 -``` - -### Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo -``` - -### Refresh the metadata -```sh -zypper refresh -``` - -# Install OpenJDK (version 1.8) for Java based components -```sh -zypper -n install java-1_8_0-openjdk -``` -{% endblock prerequisites %} +1. Install the repository configuration + + ```sh + zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + ``` + +1. Refresh the metadata + + ```sh + zypper refresh + ``` + +1. Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories + + ```sh + zypper install SUSEConnect + ``` + +1. Register the host with SUSE, allowing access to SUSE repositories + + Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information + + ```sh + SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + SUSEConnect -p PackageHub/12.4/x86_64 + SUSEConnect -p sle-sdk/12.4/x86_64 + ``` +1. Install the following repository for PEM dependencies + + ```sh + zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + ``` + +1. Refresh the metadata + + ```sh + zypper refresh + ``` + +1. Install OpenJDK (version 1.8) for Java based components + + ```sh + zypper -n install java-1_8_0-openjdk + ``` +{% endblock prerequisites %} {% block installCommand %} -```sh -zypper -n install {{ packageName }} -``` + ```sh + zypper -n install {{ packageName }} + ``` {% endblock installCommand %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk new file mode 100644 index 00000000000..fbf07f4bc34 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-postgres-advanced-server/rhel-7.njk" %} +{% set includeLOCAL = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk index 9e971d223ca..930150d6d4d 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk @@ -2,5 +2,4 @@ {% set includePPC = true %} {% block installCommand %} {{ super() }} -{% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} {% endblock installCommand %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk new file mode 100644 index 00000000000..38ed706acd9 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "rhel-8-centos-8-ol-8" %} +{% block installCommand %} +{{ super() }} +{% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} +{% endblock installCommand %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk new file mode 100644 index 00000000000..68bead10da1 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk @@ -0,0 +1,2 @@ +{% extends "products/edb-postgres-advanced-server/rhel-8.njk" %} +{% set includePPC = true %} \ No newline at end of file From e474204c4258693fc0e797202470f076c0d44dfe Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Wed, 9 Feb 2022 14:25:08 +0530 Subject: [PATCH 009/180] Added all the products and their respective versions. Added all the products and their respective versions. --- install_template/config.yaml | 720 ++++++++++++++++++ .../templates/platformBase/base.njk | 6 + .../templates/platformBase/sles-12.njk | 41 + .../templates/platformBase/sles-15.njk | 45 ++ .../templates/products/edb*plus/base.njk | 2 + .../templates/products/edb*plus/centos-7.njk | 2 + .../products/edb*plus/centos-7_ppc64le.njk | 2 + .../templates/products/edb*plus/centos-8.njk | 10 + .../templates/products/edb*plus/debian-10.njk | 2 + .../templates/products/edb*plus/debian-9.njk | 2 + .../templates/products/edb*plus/rhel-7.njk | 2 + .../products/edb*plus/rhel-7_ppc64le.njk | 2 + .../templates/products/edb*plus/rhel-8.njk | 2 + .../templates/products/edb*plus/sles-12.njk | 2 + .../products/edb*plus/sles-12_ppc64le.njk | 3 + .../templates/products/edb*plus/sles-15.njk | 2 + .../products/edb*plus/sles-15_ppc64le.njk | 3 + .../products/edb*plus/ubuntu-18.04.njk | 1 + .../products/edb*plus/ubuntu-20.04.njk | 1 + .../templates/products/edb-bart/base.njk | 2 + .../templates/products/edb-bart/centos-7.njk | 2 + .../products/edb-bart/centos-7_ppc64le.njk | 2 + .../templates/products/edb-bart/centos-8.njk | 10 + .../templates/products/edb-bart/debian-10.njk | 2 + .../templates/products/edb-bart/debian-9.njk | 2 + .../templates/products/edb-bart/rhel-7.njk | 2 + .../products/edb-bart/rhel-7_ppc64le.njk | 2 + .../templates/products/edb-bart/rhel-8.njk | 2 + .../templates/products/edb-bart/sles-12.njk | 2 + .../products/edb-bart/sles-12_ppc64le.njk | 2 + .../templates/products/edb-bart/sles-15.njk | 2 + .../products/edb-bart/sles-15_ppc64le.njk | 3 + .../products/edb-bart/ubuntu-18.04.njk | 1 + .../products/edb-bart/ubuntu-20.04.njk | 1 + .../products/edb-jdbc-connector/base.njk | 2 + .../products/edb-jdbc-connector/centos-7.njk | 2 + .../edb-jdbc-connector/centos-7_ppc64le.njk | 2 + .../products/edb-jdbc-connector/centos-8.njk | 10 + .../products/edb-jdbc-connector/debian-10.njk | 2 + .../products/edb-jdbc-connector/debian-9.njk | 2 + .../products/edb-jdbc-connector/rhel-7.njk | 2 + .../edb-jdbc-connector/rhel-7_ppc64le.njk | 2 + .../products/edb-jdbc-connector/rhel-8.njk | 2 + .../products/edb-jdbc-connector/sles-12.njk | 2 + .../edb-jdbc-connector/sles-12_ppc64le.njk | 2 + .../products/edb-jdbc-connector/sles-15.njk | 2 + .../edb-jdbc-connector/sles-15_ppc64le.njk | 3 + .../edb-jdbc-connector/ubuntu-18.04.njk | 1 + .../edb-jdbc-connector/ubuntu-20.04.njk | 1 + .../products/edb-migrationtoolkit/base.njk | 2 + .../edb-migrationtoolkit/centos-7.njk | 2 + .../edb-migrationtoolkit/centos-7_ppc64le.njk | 2 + .../edb-migrationtoolkit/centos-8.njk | 10 + .../edb-migrationtoolkit/debian-10.njk | 2 + .../edb-migrationtoolkit/debian-9.njk | 2 + .../products/edb-migrationtoolkit/rhel-7.njk | 2 + .../edb-migrationtoolkit/rhel-7_ppc64le.njk | 2 + .../products/edb-migrationtoolkit/rhel-8.njk | 2 + .../products/edb-migrationtoolkit/sles-12.njk | 2 + .../products/edb-migrationtoolkit/sles-15.njk | 2 + .../edb-migrationtoolkit/sles-15_ppc64le.njk | 3 + .../edb-migrationtoolkit/ubuntu-18.04.njk | 1 + .../edb-migrationtoolkit/ubuntu-20.04.njk | 1 + .../products/edb-oci-connector/base.njk | 2 + .../products/edb-oci-connector/centos-7.njk | 2 + .../edb-oci-connector/centos-7_ppc64le.njk | 2 + .../products/edb-oci-connector/centos-8.njk | 10 + .../products/edb-oci-connector/debian-10.njk | 2 + .../products/edb-oci-connector/debian-9.njk | 2 + .../products/edb-oci-connector/rhel-7.njk | 2 + .../edb-oci-connector/rhel-7_ppc64le.njk | 2 + .../products/edb-oci-connector/rhel-8.njk | 2 + .../products/edb-oci-connector/sles-12.njk | 2 + .../edb-oci-connector/sles-12_ppc64le.njk | 2 + .../products/edb-oci-connector/sles-15.njk | 2 + .../edb-oci-connector/sles-15_ppc64le.njk | 3 + .../edb-oci-connector/ubuntu-18.04.njk | 1 + .../edb-oci-connector/ubuntu-20.04.njk | 1 + .../products/edb-odbc-connector/base.njk | 2 + .../products/edb-odbc-connector/centos-7.njk | 2 + .../edb-odbc-connector/centos-7_ppc64le.njk | 2 + .../products/edb-odbc-connector/centos-8.njk | 10 + .../products/edb-odbc-connector/debian-10.njk | 2 + .../products/edb-odbc-connector/debian-9.njk | 2 + .../products/edb-odbc-connector/rhel-7.njk | 2 + .../edb-odbc-connector/rhel-7_ppc64le.njk | 2 + .../products/edb-odbc-connector/rhel-8.njk | 2 + .../products/edb-odbc-connector/sles-12.njk | 2 + .../edb-odbc-connector/sles-12_ppc64le.njk | 2 + .../products/edb-odbc-connector/sles-15.njk | 2 + .../edb-odbc-connector/sles-15_ppc64le.njk | 3 + .../edb-odbc-connector/ubuntu-18.04.njk | 1 + .../edb-odbc-connector/ubuntu-20.04.njk | 1 + .../templates/products/edb-pgbouncer/base.njk | 2 + .../products/edb-pgbouncer/centos-7.njk | 2 + .../edb-pgbouncer/centos-7_ppc64le.njk | 2 + .../products/edb-pgbouncer/centos-8.njk | 10 + .../products/edb-pgbouncer/debian-10.njk | 2 + .../products/edb-pgbouncer/debian-9.njk | 2 + .../products/edb-pgbouncer/rhel-7.njk | 2 + .../products/edb-pgbouncer/rhel-7_ppc64le.njk | 2 + .../products/edb-pgbouncer/rhel-8.njk | 2 + .../products/edb-pgbouncer/sles-12.njk | 2 + .../edb-pgbouncer/sles-12_ppc64le.njk | 2 + .../products/edb-pgbouncer/sles-15.njk | 2 + .../edb-pgbouncer/sles-15_ppc64le.njk | 3 + .../products/edb-pgbouncer/ubuntu-18.04.njk | 1 + .../products/edb-pgbouncer/ubuntu-20.04.njk | 1 + .../templates/products/edb-pgpoolii/base.njk | 2 + .../products/edb-pgpoolii/centos-7.njk | 2 + .../edb-pgpoolii/centos-7_ppc64le.njk | 2 + .../products/edb-pgpoolii/centos-8.njk | 10 + .../products/edb-pgpoolii/debian-10.njk | 2 + .../products/edb-pgpoolii/debian-9.njk | 2 + .../products/edb-pgpoolii/rhel-7.njk | 2 + .../products/edb-pgpoolii/rhel-7_ppc64le.njk | 2 + .../products/edb-pgpoolii/rhel-8.njk | 2 + .../products/edb-pgpoolii/sles-12.njk | 2 + .../products/edb-pgpoolii/sles-12_ppc64le.njk | 2 + .../products/edb-pgpoolii/sles-15.njk | 2 + .../products/edb-pgpoolii/sles-15_ppc64le.njk | 3 + .../products/edb-pgpoolii/ubuntu-18.04.njk | 1 + .../products/edb-pgpoolii/ubuntu-20.04.njk | 1 + .../sles-12_ppc64le.njk | 6 + .../edb-postgres-advanced-server/sles-15.njk | 6 + .../sles-15_ppc64le.njk | 7 + .../products/failover-manager/base.njk | 2 + .../products/failover-manager/centos-7.njk | 2 + .../failover-manager/centos-7_ppc64le.njk | 2 + .../products/failover-manager/centos-8.njk | 10 + .../products/failover-manager/debian-10.njk | 2 + .../products/failover-manager/debian-9.njk | 2 + .../products/failover-manager/rhel-7.njk | 2 + .../failover-manager/rhel-7_ppc64le.njk | 2 + .../products/failover-manager/rhel-8.njk | 2 + .../products/failover-manager/sles-12.njk | 2 + .../failover-manager/sles-12_ppc64le.njk | 2 + .../products/failover-manager/sles-15.njk | 2 + .../failover-manager/sles-15_ppc64le.njk | 3 + .../failover-manager/ubuntu-18.04.njk | 1 + .../failover-manager/ubuntu-20.04.njk | 1 + .../hadoop-foreign-data-wrapper/base.njk | 2 + .../hadoop-foreign-data-wrapper/centos-7.njk | 2 + .../centos-7_ppc64le.njk | 2 + .../hadoop-foreign-data-wrapper/centos-8.njk | 10 + .../hadoop-foreign-data-wrapper/debian-10.njk | 2 + .../hadoop-foreign-data-wrapper/debian-9.njk | 2 + .../hadoop-foreign-data-wrapper/rhel-7.njk | 2 + .../rhel-7_ppc64le.njk | 2 + .../hadoop-foreign-data-wrapper/rhel-8.njk | 2 + .../hadoop-foreign-data-wrapper/sles-12.njk | 2 + .../sles-12_ppc64le.njk | 2 + .../hadoop-foreign-data-wrapper/sles-15.njk | 2 + .../sles-15_ppc64le.njk | 3 + .../ubuntu-18.04.njk | 1 + .../ubuntu-20.04.njk | 1 + .../mongodb-foreign-data-wrapper/base.njk | 2 + .../mongodb-foreign-data-wrapper/centos-7.njk | 2 + .../centos-7_ppc64le.njk | 2 + .../mongodb-foreign-data-wrapper/centos-8.njk | 10 + .../debian-10.njk | 2 + .../mongodb-foreign-data-wrapper/debian-9.njk | 2 + .../mongodb-foreign-data-wrapper/rhel-7.njk | 2 + .../rhel-7_ppc64le.njk | 2 + .../mongodb-foreign-data-wrapper/rhel-8.njk | 2 + .../mongodb-foreign-data-wrapper/sles-12.njk | 2 + .../sles-12_ppc64le.njk | 2 + .../mongodb-foreign-data-wrapper/sles-15.njk | 2 + .../sles-15_ppc64le.njk | 3 + .../ubuntu-18.04.njk | 1 + .../ubuntu-20.04.njk | 1 + .../mysql-foreign-data-wrapper/base.njk | 2 + .../mysql-foreign-data-wrapper/centos-7.njk | 2 + .../centos-7_ppc64le.njk | 2 + .../mysql-foreign-data-wrapper/centos-8.njk | 10 + .../mysql-foreign-data-wrapper/debian-10.njk | 2 + .../mysql-foreign-data-wrapper/debian-9.njk | 2 + .../mysql-foreign-data-wrapper/rhel-7.njk | 2 + .../rhel-7_ppc64le.njk | 2 + .../mysql-foreign-data-wrapper/rhel-8.njk | 2 + .../mysql-foreign-data-wrapper/sles-12.njk | 2 + .../sles-12_ppc64le.njk | 2 + .../mysql-foreign-data-wrapper/sles-15.njk | 2 + .../sles-15_ppc64le.njk | 3 + .../ubuntu-18.04.njk | 1 + .../ubuntu-20.04.njk | 1 + .../templates/products/postgis/base.njk | 2 + .../templates/products/postgis/centos-7.njk | 2 + .../products/postgis/centos-7_ppc64le.njk | 2 + .../templates/products/postgis/centos-8.njk | 10 + .../templates/products/postgis/debian-10.njk | 2 + .../templates/products/postgis/debian-9.njk | 2 + .../templates/products/postgis/rhel-7.njk | 2 + .../products/postgis/rhel-7_ppc64le.njk | 2 + .../templates/products/postgis/rhel-8.njk | 2 + .../templates/products/postgis/sles-12.njk | 2 + .../products/postgis/sles-12_ppc64le.njk | 2 + .../templates/products/postgis/sles-15.njk | 2 + .../products/postgis/sles-15_ppc64le.njk | 3 + .../products/postgis/ubuntu-18.04.njk | 1 + .../products/postgis/ubuntu-20.04.njk | 1 + .../postgres-enterprise-manager/base.njk | 11 + .../postgres-enterprise-manager/centos-7.njk | 2 + .../centos-7_ppc64le.njk | 2 + .../postgres-enterprise-manager/centos-8.njk | 10 + .../postgres-enterprise-manager/debian-10.njk | 2 + .../postgres-enterprise-manager/debian-9.njk | 2 + .../postgres-enterprise-manager/rhel-7.njk | 2 + .../rhel-7_ppc64le.njk | 2 + .../postgres-enterprise-manager/rhel-8.njk | 2 + .../postgres-enterprise-manager/sles-12.njk | 2 + .../postgres-enterprise-manager/sles-15.njk | 2 + .../sles-15_ppc64le.njk | 3 + .../ubuntu-18.04.njk | 1 + .../ubuntu-20.04.njk | 1 + .../products/replication-manager/base.njk | 2 + .../products/replication-manager/centos-7.njk | 2 + .../replication-manager/centos-7_ppc64le.njk | 2 + .../products/replication-manager/centos-8.njk | 10 + .../replication-manager/debian-10.njk | 2 + .../products/replication-manager/debian-9.njk | 2 + .../products/replication-manager/rhel-7.njk | 2 + .../replication-manager/rhel-7_ppc64le.njk | 2 + .../products/replication-manager/rhel-8.njk | 2 + .../products/replication-manager/sles-12.njk | 2 + .../replication-manager/sles-12_ppc64le.njk | 2 + .../products/replication-manager/sles-15.njk | 2 + .../replication-manager/sles-15_ppc64le.njk | 3 + .../replication-manager/ubuntu-18.04.njk | 1 + .../replication-manager/ubuntu-20.04.njk | 1 + .../products/slony-replication/base.njk | 2 + .../products/slony-replication/centos-7.njk | 2 + .../slony-replication/centos-7_ppc64le.njk | 2 + .../products/slony-replication/centos-8.njk | 10 + .../products/slony-replication/debian-10.njk | 2 + .../products/slony-replication/debian-9.njk | 2 + .../products/slony-replication/rhel-7.njk | 2 + .../slony-replication/rhel-7_ppc64le.njk | 2 + .../products/slony-replication/rhel-8.njk | 2 + .../products/slony-replication/sles-12.njk | 2 + .../slony-replication/sles-12_ppc64le.njk | 2 + .../products/slony-replication/sles-15.njk | 2 + .../slony-replication/sles-15_ppc64le.njk | 3 + .../slony-replication/ubuntu-18.04.njk | 1 + .../slony-replication/ubuntu-20.04.njk | 1 + 245 files changed, 1429 insertions(+) create mode 100644 install_template/templates/platformBase/sles-15.njk create mode 100644 install_template/templates/products/edb*plus/base.njk create mode 100644 install_template/templates/products/edb*plus/centos-7.njk create mode 100644 install_template/templates/products/edb*plus/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb*plus/centos-8.njk create mode 100644 install_template/templates/products/edb*plus/debian-10.njk create mode 100644 install_template/templates/products/edb*plus/debian-9.njk create mode 100644 install_template/templates/products/edb*plus/rhel-7.njk create mode 100644 install_template/templates/products/edb*plus/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb*plus/rhel-8.njk create mode 100644 install_template/templates/products/edb*plus/sles-12.njk create mode 100644 install_template/templates/products/edb*plus/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb*plus/sles-15.njk create mode 100644 install_template/templates/products/edb*plus/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb*plus/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb*plus/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-bart/base.njk create mode 100644 install_template/templates/products/edb-bart/centos-7.njk create mode 100644 install_template/templates/products/edb-bart/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-bart/centos-8.njk create mode 100644 install_template/templates/products/edb-bart/debian-10.njk create mode 100644 install_template/templates/products/edb-bart/debian-9.njk create mode 100644 install_template/templates/products/edb-bart/rhel-7.njk create mode 100644 install_template/templates/products/edb-bart/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-bart/rhel-8.njk create mode 100644 install_template/templates/products/edb-bart/sles-12.njk create mode 100644 install_template/templates/products/edb-bart/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-bart/sles-15.njk create mode 100644 install_template/templates/products/edb-bart/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-bart/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-bart/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/base.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/centos-7.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/centos-8.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/debian-10.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/debian-9.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/rhel-7.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/rhel-8.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/sles-12.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/sles-15.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-jdbc-connector/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/base.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/centos-7.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/centos-8.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/debian-10.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/debian-9.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/rhel-7.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/rhel-8.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/sles-12.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/sles-15.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-oci-connector/base.njk create mode 100644 install_template/templates/products/edb-oci-connector/centos-7.njk create mode 100644 install_template/templates/products/edb-oci-connector/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-oci-connector/centos-8.njk create mode 100644 install_template/templates/products/edb-oci-connector/debian-10.njk create mode 100644 install_template/templates/products/edb-oci-connector/debian-9.njk create mode 100644 install_template/templates/products/edb-oci-connector/rhel-7.njk create mode 100644 install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-oci-connector/rhel-8.njk create mode 100644 install_template/templates/products/edb-oci-connector/sles-12.njk create mode 100644 install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-oci-connector/sles-15.njk create mode 100644 install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-oci-connector/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-oci-connector/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-odbc-connector/base.njk create mode 100644 install_template/templates/products/edb-odbc-connector/centos-7.njk create mode 100644 install_template/templates/products/edb-odbc-connector/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-odbc-connector/centos-8.njk create mode 100644 install_template/templates/products/edb-odbc-connector/debian-10.njk create mode 100644 install_template/templates/products/edb-odbc-connector/debian-9.njk create mode 100644 install_template/templates/products/edb-odbc-connector/rhel-7.njk create mode 100644 install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-odbc-connector/rhel-8.njk create mode 100644 install_template/templates/products/edb-odbc-connector/sles-12.njk create mode 100644 install_template/templates/products/edb-odbc-connector/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-odbc-connector/sles-15.njk create mode 100644 install_template/templates/products/edb-odbc-connector/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-odbc-connector/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-odbc-connector/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-pgbouncer/base.njk create mode 100644 install_template/templates/products/edb-pgbouncer/centos-7.njk create mode 100644 install_template/templates/products/edb-pgbouncer/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgbouncer/centos-8.njk create mode 100644 install_template/templates/products/edb-pgbouncer/debian-10.njk create mode 100644 install_template/templates/products/edb-pgbouncer/debian-9.njk create mode 100644 install_template/templates/products/edb-pgbouncer/rhel-7.njk create mode 100644 install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgbouncer/rhel-8.njk create mode 100644 install_template/templates/products/edb-pgbouncer/sles-12.njk create mode 100644 install_template/templates/products/edb-pgbouncer/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgbouncer/sles-15.njk create mode 100644 install_template/templates/products/edb-pgbouncer/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgbouncer/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-pgbouncer/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-pgpoolii/base.njk create mode 100644 install_template/templates/products/edb-pgpoolii/centos-7.njk create mode 100644 install_template/templates/products/edb-pgpoolii/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii/centos-8.njk create mode 100644 install_template/templates/products/edb-pgpoolii/debian-10.njk create mode 100644 install_template/templates/products/edb-pgpoolii/debian-9.njk create mode 100644 install_template/templates/products/edb-pgpoolii/rhel-7.njk create mode 100644 install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii/rhel-8.njk create mode 100644 install_template/templates/products/edb-pgpoolii/sles-12.njk create mode 100644 install_template/templates/products/edb-pgpoolii/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii/sles-15.njk create mode 100644 install_template/templates/products/edb-pgpoolii/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-pgpoolii/ubuntu-20.04.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/sles-15.njk create mode 100644 install_template/templates/products/edb-postgres-advanced-server/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/failover-manager/base.njk create mode 100644 install_template/templates/products/failover-manager/centos-7.njk create mode 100644 install_template/templates/products/failover-manager/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/failover-manager/centos-8.njk create mode 100644 install_template/templates/products/failover-manager/debian-10.njk create mode 100644 install_template/templates/products/failover-manager/debian-9.njk create mode 100644 install_template/templates/products/failover-manager/rhel-7.njk create mode 100644 install_template/templates/products/failover-manager/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/failover-manager/rhel-8.njk create mode 100644 install_template/templates/products/failover-manager/sles-12.njk create mode 100644 install_template/templates/products/failover-manager/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/failover-manager/sles-15.njk create mode 100644 install_template/templates/products/failover-manager/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/failover-manager/ubuntu-18.04.njk create mode 100644 install_template/templates/products/failover-manager/ubuntu-20.04.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/base.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/centos-8.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/base.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/centos-7.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/centos-8.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/debian-10.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/debian-9.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/sles-12.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/sles-15.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-18.04.njk create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-20.04.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/base.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/centos-7.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/centos-8.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/debian-10.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/debian-9.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/rhel-7.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/rhel-8.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-18.04.njk create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-20.04.njk create mode 100644 install_template/templates/products/postgis/base.njk create mode 100644 install_template/templates/products/postgis/centos-7.njk create mode 100644 install_template/templates/products/postgis/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/postgis/centos-8.njk create mode 100644 install_template/templates/products/postgis/debian-10.njk create mode 100644 install_template/templates/products/postgis/debian-9.njk create mode 100644 install_template/templates/products/postgis/rhel-7.njk create mode 100644 install_template/templates/products/postgis/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/postgis/rhel-8.njk create mode 100644 install_template/templates/products/postgis/sles-12.njk create mode 100644 install_template/templates/products/postgis/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/postgis/sles-15.njk create mode 100644 install_template/templates/products/postgis/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/postgis/ubuntu-18.04.njk create mode 100644 install_template/templates/products/postgis/ubuntu-20.04.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/base.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/centos-7.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/centos-8.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/debian-10.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/debian-9.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/rhel-7.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/rhel-8.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/sles-12.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/sles-15.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/ubuntu-18.04.njk create mode 100644 install_template/templates/products/postgres-enterprise-manager/ubuntu-20.04.njk create mode 100644 install_template/templates/products/replication-manager/base.njk create mode 100644 install_template/templates/products/replication-manager/centos-7.njk create mode 100644 install_template/templates/products/replication-manager/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/replication-manager/centos-8.njk create mode 100644 install_template/templates/products/replication-manager/debian-10.njk create mode 100644 install_template/templates/products/replication-manager/debian-9.njk create mode 100644 install_template/templates/products/replication-manager/rhel-7.njk create mode 100644 install_template/templates/products/replication-manager/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/replication-manager/rhel-8.njk create mode 100644 install_template/templates/products/replication-manager/sles-12.njk create mode 100644 install_template/templates/products/replication-manager/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/replication-manager/sles-15.njk create mode 100644 install_template/templates/products/replication-manager/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/replication-manager/ubuntu-18.04.njk create mode 100644 install_template/templates/products/replication-manager/ubuntu-20.04.njk create mode 100644 install_template/templates/products/slony-replication/base.njk create mode 100644 install_template/templates/products/slony-replication/centos-7.njk create mode 100644 install_template/templates/products/slony-replication/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/slony-replication/centos-8.njk create mode 100644 install_template/templates/products/slony-replication/debian-10.njk create mode 100644 install_template/templates/products/slony-replication/debian-9.njk create mode 100644 install_template/templates/products/slony-replication/rhel-7.njk create mode 100644 install_template/templates/products/slony-replication/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/slony-replication/rhel-8.njk create mode 100644 install_template/templates/products/slony-replication/sles-12.njk create mode 100644 install_template/templates/products/slony-replication/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/slony-replication/sles-15.njk create mode 100644 install_template/templates/products/slony-replication/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/slony-replication/ubuntu-18.04.njk create mode 100644 install_template/templates/products/slony-replication/ubuntu-20.04.njk diff --git a/install_template/config.yaml b/install_template/config.yaml index 3122ec8cc62..ca0601583bc 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,4 +1,312 @@ products: + - name: EDB BART + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [2.6] + - name: CentOS 7 + arch: ppc64le + supported versions: [2.6] + - name: CentOS 8 + arch: x86_64 + supported versions: [2.6] + - name: RHEL 7 + arch: x86_64 + supported versions: [2.6] + - name: RHEL 7 + arch: ppc64le + supported versions: [2.6] + - name: RHEL 8 + arch: x86_64 + supported versions: [2.6] + - name: Debian 9 + arch: x86_64 + supported versions: [2.6] + - name: Debian 10 + arch: x86_64 + supported versions: [2.6] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [2.6] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [2.6] + - name: SLES 12 + arch: x86_64 + supported versions: [2.6] + - name: SLES 12 + arch: ppc64le + supported versions: [2.6] + - name: SLES 15 + arch: x86_64 + supported versions: [2.6] + - name: SLES 15 + arch: ppc64le + supported versions: [2.6] + - name: EDB JDBC Connector + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [42.x.x] + - name: CentOS 7 + arch: ppc64le + supported versions: [42.x.x] + - name: CentOS 8 + arch: x86_64 + supported versions: [42.x.x] + - name: RHEL 7 + arch: x86_64 + supported versions: [42.x.x] + - name: RHEL 7 + arch: ppc64le + supported versions: [42.x.x] + - name: RHEL 8 + arch: x86_64 + supported versions: [42.x.x] + - name: Debian 9 + arch: x86_64 + supported versions: [42.x.x] + - name: Debian 10 + arch: x86_64 + supported versions: [42.x.x] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [42.x.x] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [42.x.x] + - name: SLES 12 + arch: x86_64 + supported versions: [42.x.x] + - name: SLES 12 + arch: ppc64le + supported versions: [42.x.x] + - name: SLES 15 + arch: x86_64 + supported versions: [42.x.x] + - name: SLES 15 + arch: ppc64le + supported versions: [42.x.x] + - name: EDB MigrationToolkit + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [54, 55] + - name: CentOS 7 + arch: ppc64le + supported versions: [54, 55] + - name: CentOS 8 + arch: x86_64 + supported versions: [54, 55] + - name: RHEL 7 + arch: x86_64 + supported versions: [54, 55] + - name: RHEL 7 + arch: ppc64le + supported versions: [54, 55] + - name: RHEL 8 + arch: x86_64 + supported versions: [54, 55] + - name: Debian 9 + arch: x86_64 + supported versions: [54, 55] + - name: Debian 10 + arch: x86_64 + supported versions: [54, 55] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [54, 55] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [54, 55] + - name: SLES 12 + arch: x86_64 + supported versions: [54, 55] + - name: SLES 12 + arch: ppc64le + supported versions: [54, 55] + - name: SLES 15 + arch: x86_64 + supported versions: [54, 55] + - name: SLES 15 + arch: ppc64le + supported versions: [54, 55] + - name: EDB OCI Connector + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [14.1.0.1] + - name: CentOS 7 + arch: ppc64le + supported versions: [14.1.0.1] + - name: CentOS 8 + arch: x86_64 + supported versions: [14.1.0.1] + - name: RHEL 7 + arch: x86_64 + supported versions: [14.1.0.1] + - name: RHEL 7 + arch: ppc64le + supported versions: [14.1.0.1] + - name: RHEL 8 + arch: x86_64 + supported versions: [14.1.0.1] + - name: Debian 9 + arch: x86_64 + supported versions: [14.1.0.1] + - name: Debian 10 + arch: x86_64 + supported versions: [14.1.0.1] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [14.1.0.1] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [14.1.0.1] + - name: SLES 12 + arch: x86_64 + supported versions: [14.1.0.1] + - name: SLES 12 + arch: ppc64le + supported versions: [14.1.0.1] + - name: SLES 15 + arch: x86_64 + supported versions: [14.1.0.1] + - name: SLES 15 + arch: ppc64le + supported versions: [14.1.0.1] + - name: EDB ODBC Connector + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [13.1.0.2] + - name: CentOS 7 + arch: ppc64le + supported versions: [13.1.0.2] + - name: CentOS 8 + arch: x86_64 + supported versions: [13.1.0.2] + - name: RHEL 7 + arch: x86_64 + supported versions: [13.1.0.2] + - name: RHEL 7 + arch: ppc64le + supported versions: [13.1.0.2] + - name: RHEL 8 + arch: x86_64 + supported versions: [13.1.0.2] + - name: Debian 9 + arch: x86_64 + supported versions: [13.1.0.2] + - name: Debian 10 + arch: x86_64 + supported versions: [13.1.0.2] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [13.1.0.2] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 12 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 12 + arch: ppc64le + supported versions: [13.1.0.2] + - name: SLES 15 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 15 + arch: ppc64le + supported versions: [13.1.0.2] + - name: EDB pgBouncer + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: CentOS 7 + arch: ppc64le + supported versions: [1.14, 1.15, 1.16] + - name: CentOS 8 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: RHEL 7 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: RHEL 7 + arch: ppc64le + supported versions: [1.14, 1.15, 1.16] + - name: RHEL 8 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: Debian 9 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: Debian 10 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: SLES 12 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: SLES 12 + arch: ppc64le + supported versions: [1.14, 1.15, 1.16] + - name: SLES 15 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: SLES 15 + arch: ppc64le + supported versions: [1.14, 1.15, 1.16] + - name: EDB PgpoolII + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: CentOS 7 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: CentOS 8 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 7 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 7 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 8 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Debian 9 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Debian 10 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 12 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 12 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 15 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 15 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] - name: EDB Postgres Advanced Server platforms: - name: CentOS 7 @@ -39,7 +347,419 @@ products: supported versions: [13, 14] - name: SLES 12 arch: x86_64 +<<<<<<< Updated upstream supported versions: [9.6, 11, 12] - name: RHEL 8 or CentOS 8 or OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] +======= + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: EDB*Plus + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: CentOS 8 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: RHEL 7 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: RHEL 7 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: RHEL 8 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: Debian 9 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: Debian 10 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: Failover Manager + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: CentOS 7 + arch: ppc64le + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: CentOS 8 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: RHEL 7 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: RHEL 7 + arch: ppc64le + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: RHEL 8 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: Debian 9 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: Debian 10 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: SLES 12 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: SLES 12 + arch: ppc64le + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: SLES 15 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: SLES 15 + arch: ppc64le + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: Hadoop Foreign Data Wrapper + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: CentOS 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: MongoDB Foreign Data Wrapper + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: CentOS 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: MySQL Foreign Data Wrapper + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: CentOS 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: PostGIS + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: CentOS 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: Postgres Enterprise Manager + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [7, 8] + - name: CentOS 7 + arch: ppc64le + supported versions: [7, 8] + - name: CentOS 8 + arch: x86_64 + supported versions: [7, 8] + - name: RHEL 7 + arch: x86_64 + supported versions: [7, 8] + - name: RHEL 7 + arch: ppc64le + supported versions: [7, 8] + - name: RHEL 8 + arch: x86_64 + supported versions: [7, 8] + - name: Debian 9 + arch: x86_64 + supported versions: [7, 8] + - name: Debian 10 + arch: x86_64 + supported versions: [7, 8] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [7, 8] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [7, 8] + - name: SLES 12 + arch: x86_64 + supported versions: [7, 8] + - name: SLES 15 + arch: x86_64 + supported versions: [7, 8] + - name: SLES 12 + arch: ppc64le + supported versions: [7, 8] + - name: SLES 15 + arch: ppc64le + supported versions: [7, 8] + - name: Replication Manager + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [7] + - name: CentOS 7 + arch: ppc64le + supported versions: [7] + - name: CentOS 8 + arch: x86_64 + supported versions: [7] + - name: RHEL 7 + arch: x86_64 + supported versions: [7] + - name: RHEL 7 + arch: ppc64le + supported versions: [7] + - name: RHEL 8 + arch: x86_64 + supported versions: [7] + - name: Debian 9 + arch: x86_64 + supported versions: [7] + - name: Debian 10 + arch: x86_64 + supported versions: [7] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [7] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [7] + - name: SLES 12 + arch: x86_64 + supported versions: [7] + - name: SLES 12 + arch: ppc64le + supported versions: [7] + - name: SLES 15 + arch: x86_64 + supported versions: [7] + - name: SLES 15 + arch: ppc64le + supported versions: [7] + - name: Slony Replication + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: CentOS 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [11, 12, 13, 14] + + + +>>>>>>> Stashed changes diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 580f937671c..33ef7325977 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -1,6 +1,12 @@ # Installing {{ product.name }} {{ product.version }} on {{ platform.name }} {{ platform.arch }} +<<<<<<< Updated upstream This topic describes how to install {{ product.name }} and includes two steps to completing an installation: +======= +This topic describes how to install {{ product.name }} and includes steps for getting started. + +There are three steps to completing an installation: +>>>>>>> Stashed changes - Setting up the repository - Installing the package diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 4fcdee23008..46169ca0d40 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,5 +1,6 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} +<<<<<<< Updated upstream 1. Install the repository configuration ```sh @@ -27,6 +28,46 @@ SUSEConnect -p PackageHub/12.4/x86_64 SUSEConnect -p sle-sdk/12.4/x86_64 ``` +======= +### Install the repository configuration +```sh +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo +``` + +### Refresh the metadata +```sh +zypper refresh +``` + +### Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +```sh +zypper install SUSEConnect +``` + +### Register the host with SUSE, allowing access to SUSE repositories +Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +```sh +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 +``` + +### Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo +``` + +### Refresh the metadata +```sh +zypper refresh +``` + +# Install OpenJDK (version 1.8) for Java based components +```sh +zypper -n install java-1_8_0-openjdk +``` +{% endblock prerequisites %} +>>>>>>> Stashed changes 1. Install the following repository for PEM dependencies diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk new file mode 100644 index 00000000000..0672a2657cd --- /dev/null +++ b/install_template/templates/platformBase/sles-15.njk @@ -0,0 +1,45 @@ +{% extends "platformBase/base.njk" %} +{% block prerequisites %} +### Install the repository configuration +```sh +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo +``` + +### Refresh the metadata +```sh +zypper refresh +``` + +### Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +```sh +zypper install SUSEConnect +``` + +### Register the host with SUSE, allowing access to SUSE repositories +Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +```sh +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 +``` + +### Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +### Refresh the metadata +```sh +zypper refresh +``` + +# Install OpenJDK (version 11) for Java based components +```sh +zypper -n install java-11-openjdk +``` +{% endblock prerequisites %} + +{% block installCommand %} +```sh +zypper -n install {{ packageName }} +``` +{% endblock installCommand %} diff --git a/install_template/templates/products/edb*plus/base.njk b/install_template/templates/products/edb*plus/base.njk new file mode 100644 index 00000000000..de4bdfb11ef --- /dev/null +++ b/install_template/templates/products/edb*plus/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as{{ product.version | replace(".", "") }}-edbplus{% endset %} diff --git a/install_template/templates/products/edb*plus/centos-7.njk b/install_template/templates/products/edb*plus/centos-7.njk new file mode 100644 index 00000000000..78e02471bd0 --- /dev/null +++ b/install_template/templates/products/edb*plus/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/centos-7_ppc64le.njk b/install_template/templates/products/edb*plus/centos-7_ppc64le.njk new file mode 100644 index 00000000000..1f84a3cf3b4 --- /dev/null +++ b/install_template/templates/products/edb*plus/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb*plus/centos-8.njk b/install_template/templates/products/edb*plus/centos-8.njk new file mode 100644 index 00000000000..9f51e52fdc3 --- /dev/null +++ b/install_template/templates/products/edb*plus/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb*plus/debian-10.njk b/install_template/templates/products/edb*plus/debian-10.njk new file mode 100644 index 00000000000..bb8123cbe22 --- /dev/null +++ b/install_template/templates/products/edb*plus/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/debian-9.njk b/install_template/templates/products/edb*plus/debian-9.njk new file mode 100644 index 00000000000..0a3cdf6aa69 --- /dev/null +++ b/install_template/templates/products/edb*plus/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/rhel-7.njk b/install_template/templates/products/edb*plus/rhel-7.njk new file mode 100644 index 00000000000..fbcc95f03d7 --- /dev/null +++ b/install_template/templates/products/edb*plus/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/rhel-7_ppc64le.njk b/install_template/templates/products/edb*plus/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..a53d9c8a43b --- /dev/null +++ b/install_template/templates/products/edb*plus/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/rhel-8.njk b/install_template/templates/products/edb*plus/rhel-8.njk new file mode 100644 index 00000000000..0902f8ac2af --- /dev/null +++ b/install_template/templates/products/edb*plus/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-12.njk b/install_template/templates/products/edb*plus/sles-12.njk new file mode 100644 index 00000000000..af25d936d5c --- /dev/null +++ b/install_template/templates/products/edb*plus/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-12_ppc64le.njk b/install_template/templates/products/edb*plus/sles-12_ppc64le.njk new file mode 100644 index 00000000000..46aaf8cdd9b --- /dev/null +++ b/install_template/templates/products/edb*plus/sles-12_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-15.njk b/install_template/templates/products/edb*plus/sles-15.njk new file mode 100644 index 00000000000..835690eb4df --- /dev/null +++ b/install_template/templates/products/edb*plus/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-15_ppc64le.njk b/install_template/templates/products/edb*plus/sles-15_ppc64le.njk new file mode 100644 index 00000000000..94bd21d28ca --- /dev/null +++ b/install_template/templates/products/edb*plus/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/ubuntu-18.04.njk b/install_template/templates/products/edb*plus/ubuntu-18.04.njk new file mode 100644 index 00000000000..b558f4ed7d9 --- /dev/null +++ b/install_template/templates/products/edb*plus/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb*plus/debian-10.njk" %} diff --git a/install_template/templates/products/edb*plus/ubuntu-20.04.njk b/install_template/templates/products/edb*plus/ubuntu-20.04.njk new file mode 100644 index 00000000000..b558f4ed7d9 --- /dev/null +++ b/install_template/templates/products/edb*plus/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb*plus/debian-10.njk" %} diff --git a/install_template/templates/products/edb-bart/base.njk b/install_template/templates/products/edb-bart/base.njk new file mode 100644 index 00000000000..f9408ac273b --- /dev/null +++ b/install_template/templates/products/edb-bart/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-bart{% endset %} diff --git a/install_template/templates/products/edb-bart/centos-7.njk b/install_template/templates/products/edb-bart/centos-7.njk new file mode 100644 index 00000000000..cb168352d8d --- /dev/null +++ b/install_template/templates/products/edb-bart/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/centos-7_ppc64le.njk b/install_template/templates/products/edb-bart/centos-7_ppc64le.njk new file mode 100644 index 00000000000..6f10d86b348 --- /dev/null +++ b/install_template/templates/products/edb-bart/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-bart/centos-8.njk b/install_template/templates/products/edb-bart/centos-8.njk new file mode 100644 index 00000000000..48f1c596b94 --- /dev/null +++ b/install_template/templates/products/edb-bart/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb-bart/debian-10.njk b/install_template/templates/products/edb-bart/debian-10.njk new file mode 100644 index 00000000000..c93a8c2af41 --- /dev/null +++ b/install_template/templates/products/edb-bart/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/debian-9.njk b/install_template/templates/products/edb-bart/debian-9.njk new file mode 100644 index 00000000000..d497d100a8b --- /dev/null +++ b/install_template/templates/products/edb-bart/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/rhel-7.njk b/install_template/templates/products/edb-bart/rhel-7.njk new file mode 100644 index 00000000000..4675b54c821 --- /dev/null +++ b/install_template/templates/products/edb-bart/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/rhel-7_ppc64le.njk b/install_template/templates/products/edb-bart/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..8bc640008f7 --- /dev/null +++ b/install_template/templates/products/edb-bart/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/rhel-8.njk b/install_template/templates/products/edb-bart/rhel-8.njk new file mode 100644 index 00000000000..cba258c3556 --- /dev/null +++ b/install_template/templates/products/edb-bart/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/sles-12.njk b/install_template/templates/products/edb-bart/sles-12.njk new file mode 100644 index 00000000000..705899632c9 --- /dev/null +++ b/install_template/templates/products/edb-bart/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/sles-12_ppc64le.njk b/install_template/templates/products/edb-bart/sles-12_ppc64le.njk new file mode 100644 index 00000000000..705899632c9 --- /dev/null +++ b/install_template/templates/products/edb-bart/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/sles-15.njk b/install_template/templates/products/edb-bart/sles-15.njk new file mode 100644 index 00000000000..244b7941398 --- /dev/null +++ b/install_template/templates/products/edb-bart/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/sles-15_ppc64le.njk b/install_template/templates/products/edb-bart/sles-15_ppc64le.njk new file mode 100644 index 00000000000..e2fc8a4dcbf --- /dev/null +++ b/install_template/templates/products/edb-bart/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/ubuntu-18.04.njk b/install_template/templates/products/edb-bart/ubuntu-18.04.njk new file mode 100644 index 00000000000..5c16448abda --- /dev/null +++ b/install_template/templates/products/edb-bart/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-bart/debian-10.njk" %} diff --git a/install_template/templates/products/edb-bart/ubuntu-20.04.njk b/install_template/templates/products/edb-bart/ubuntu-20.04.njk new file mode 100644 index 00000000000..5c16448abda --- /dev/null +++ b/install_template/templates/products/edb-bart/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-bart/debian-10.njk" %} diff --git a/install_template/templates/products/edb-jdbc-connector/base.njk b/install_template/templates/products/edb-jdbc-connector/base.njk new file mode 100644 index 00000000000..d4a8ac8cc12 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-jdbc{% endset %} diff --git a/install_template/templates/products/edb-jdbc-connector/centos-7.njk b/install_template/templates/products/edb-jdbc-connector/centos-7.njk new file mode 100644 index 00000000000..5a302d86826 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/centos-7_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/centos-7_ppc64le.njk new file mode 100644 index 00000000000..3fcb93ad6f3 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-jdbc-connector/centos-8.njk b/install_template/templates/products/edb-jdbc-connector/centos-8.njk new file mode 100644 index 00000000000..8aa48ff931e --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb-jdbc-connector/debian-10.njk b/install_template/templates/products/edb-jdbc-connector/debian-10.njk new file mode 100644 index 00000000000..d5f7157ef7b --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/debian-9.njk b/install_template/templates/products/edb-jdbc-connector/debian-9.njk new file mode 100644 index 00000000000..193de285dc3 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/rhel-7.njk b/install_template/templates/products/edb-jdbc-connector/rhel-7.njk new file mode 100644 index 00000000000..baec0a866e3 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..2c1711d3824 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/rhel-8.njk b/install_template/templates/products/edb-jdbc-connector/rhel-8.njk new file mode 100644 index 00000000000..b49dee09cf7 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/sles-12.njk b/install_template/templates/products/edb-jdbc-connector/sles-12.njk new file mode 100644 index 00000000000..7ce8e343f4d --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk new file mode 100644 index 00000000000..7ce8e343f4d --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/sles-15.njk b/install_template/templates/products/edb-jdbc-connector/sles-15.njk new file mode 100644 index 00000000000..e1afa96be2c --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/sles-15_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/sles-15_ppc64le.njk new file mode 100644 index 00000000000..7bc76791795 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-jdbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/ubuntu-18.04.njk b/install_template/templates/products/edb-jdbc-connector/ubuntu-18.04.njk new file mode 100644 index 00000000000..33f908ffae7 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-jdbc-connector/debian-10.njk" %} diff --git a/install_template/templates/products/edb-jdbc-connector/ubuntu-20.04.njk b/install_template/templates/products/edb-jdbc-connector/ubuntu-20.04.njk new file mode 100644 index 00000000000..33f908ffae7 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-jdbc-connector/debian-10.njk" %} diff --git a/install_template/templates/products/edb-migrationtoolkit/base.njk b/install_template/templates/products/edb-migrationtoolkit/base.njk new file mode 100644 index 00000000000..fddc92f9d4a --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-migrationtoolkit{% endset %} diff --git a/install_template/templates/products/edb-migrationtoolkit/centos-7.njk b/install_template/templates/products/edb-migrationtoolkit/centos-7.njk new file mode 100644 index 00000000000..1a6cb37e73b --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/centos-7_ppc64le.njk b/install_template/templates/products/edb-migrationtoolkit/centos-7_ppc64le.njk new file mode 100644 index 00000000000..725607ba18c --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-migrationtoolkit/centos-8.njk b/install_template/templates/products/edb-migrationtoolkit/centos-8.njk new file mode 100644 index 00000000000..a3d08f71027 --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb-migrationtoolkit/debian-10.njk b/install_template/templates/products/edb-migrationtoolkit/debian-10.njk new file mode 100644 index 00000000000..b548674225f --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/debian-9.njk b/install_template/templates/products/edb-migrationtoolkit/debian-9.njk new file mode 100644 index 00000000000..920969960c6 --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-7.njk b/install_template/templates/products/edb-migrationtoolkit/rhel-7.njk new file mode 100644 index 00000000000..6c29a00a703 --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk b/install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..77d7911c6ab --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-8.njk b/install_template/templates/products/edb-migrationtoolkit/rhel-8.njk new file mode 100644 index 00000000000..85807a17b21 --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/sles-12.njk b/install_template/templates/products/edb-migrationtoolkit/sles-12.njk new file mode 100644 index 00000000000..2f007c1080b --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/sles-15.njk b/install_template/templates/products/edb-migrationtoolkit/sles-15.njk new file mode 100644 index 00000000000..a820d232a0a --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/sles-15_ppc64le.njk b/install_template/templates/products/edb-migrationtoolkit/sles-15_ppc64le.njk new file mode 100644 index 00000000000..cac76c482df --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk new file mode 100644 index 00000000000..b1010ce48bd --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-migrationtoolkit/debian-10.njk" %} diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk new file mode 100644 index 00000000000..b1010ce48bd --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-migrationtoolkit/debian-10.njk" %} diff --git a/install_template/templates/products/edb-oci-connector/base.njk b/install_template/templates/products/edb-oci-connector/base.njk new file mode 100644 index 00000000000..fbaac082c2d --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-oci{% endset %} diff --git a/install_template/templates/products/edb-oci-connector/centos-7.njk b/install_template/templates/products/edb-oci-connector/centos-7.njk new file mode 100644 index 00000000000..e6cfd6922b3 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/centos-7_ppc64le.njk b/install_template/templates/products/edb-oci-connector/centos-7_ppc64le.njk new file mode 100644 index 00000000000..7dbb5bf1924 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-oci-connector/centos-8.njk b/install_template/templates/products/edb-oci-connector/centos-8.njk new file mode 100644 index 00000000000..bfd634e1ac5 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb-oci-connector/debian-10.njk b/install_template/templates/products/edb-oci-connector/debian-10.njk new file mode 100644 index 00000000000..c48eeccdea8 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/debian-9.njk b/install_template/templates/products/edb-oci-connector/debian-9.njk new file mode 100644 index 00000000000..6acb2907ca3 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/rhel-7.njk b/install_template/templates/products/edb-oci-connector/rhel-7.njk new file mode 100644 index 00000000000..3392073dc6d --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk b/install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..6a629226a78 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/rhel-8.njk b/install_template/templates/products/edb-oci-connector/rhel-8.njk new file mode 100644 index 00000000000..2759992fd79 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-12.njk b/install_template/templates/products/edb-oci-connector/sles-12.njk new file mode 100644 index 00000000000..a5923e3947f --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk new file mode 100644 index 00000000000..a5923e3947f --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-15.njk b/install_template/templates/products/edb-oci-connector/sles-15.njk new file mode 100644 index 00000000000..d5560509e3e --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk b/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk new file mode 100644 index 00000000000..64f2ec5cbf3 --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-oci-connector/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/ubuntu-18.04.njk b/install_template/templates/products/edb-oci-connector/ubuntu-18.04.njk new file mode 100644 index 00000000000..e8bc4fff6fa --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-oci-connector/debian-10.njk" %} diff --git a/install_template/templates/products/edb-oci-connector/ubuntu-20.04.njk b/install_template/templates/products/edb-oci-connector/ubuntu-20.04.njk new file mode 100644 index 00000000000..e8bc4fff6fa --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-oci-connector/debian-10.njk" %} diff --git a/install_template/templates/products/edb-odbc-connector/base.njk b/install_template/templates/products/edb-odbc-connector/base.njk new file mode 100644 index 00000000000..533f6a9fa65 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-odbc{% endset %} diff --git a/install_template/templates/products/edb-odbc-connector/centos-7.njk b/install_template/templates/products/edb-odbc-connector/centos-7.njk new file mode 100644 index 00000000000..feae850732d --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/centos-7_ppc64le.njk b/install_template/templates/products/edb-odbc-connector/centos-7_ppc64le.njk new file mode 100644 index 00000000000..81c735ec9f7 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-odbc-connector/centos-8.njk b/install_template/templates/products/edb-odbc-connector/centos-8.njk new file mode 100644 index 00000000000..2204fa93a94 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb-odbc-connector/debian-10.njk b/install_template/templates/products/edb-odbc-connector/debian-10.njk new file mode 100644 index 00000000000..c3b68f87253 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/debian-9.njk b/install_template/templates/products/edb-odbc-connector/debian-9.njk new file mode 100644 index 00000000000..217e336fbf1 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/rhel-7.njk b/install_template/templates/products/edb-odbc-connector/rhel-7.njk new file mode 100644 index 00000000000..851b896240d --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk b/install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..f1c1f9201c1 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/rhel-8.njk b/install_template/templates/products/edb-odbc-connector/rhel-8.njk new file mode 100644 index 00000000000..5adcac2aa88 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/sles-12.njk b/install_template/templates/products/edb-odbc-connector/sles-12.njk new file mode 100644 index 00000000000..3b5f6694028 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-odbc-connector/sles-12_ppc64le.njk new file mode 100644 index 00000000000..3b5f6694028 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/sles-15.njk b/install_template/templates/products/edb-odbc-connector/sles-15.njk new file mode 100644 index 00000000000..e392f81aea9 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/sles-15_ppc64le.njk b/install_template/templates/products/edb-odbc-connector/sles-15_ppc64le.njk new file mode 100644 index 00000000000..c9839f9812e --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-odbc-connector/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/ubuntu-18.04.njk b/install_template/templates/products/edb-odbc-connector/ubuntu-18.04.njk new file mode 100644 index 00000000000..05bcce6ea77 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-odbc-connector/debian-10.njk" %} diff --git a/install_template/templates/products/edb-odbc-connector/ubuntu-20.04.njk b/install_template/templates/products/edb-odbc-connector/ubuntu-20.04.njk new file mode 100644 index 00000000000..05bcce6ea77 --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-odbc-connector/debian-10.njk" %} diff --git a/install_template/templates/products/edb-pgbouncer/base.njk b/install_template/templates/products/edb-pgbouncer/base.njk new file mode 100644 index 00000000000..936aa505fcf --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-pgbouncer{{ product.version | replace(".", "") }}{% endset %} diff --git a/install_template/templates/products/edb-pgbouncer/centos-7.njk b/install_template/templates/products/edb-pgbouncer/centos-7.njk new file mode 100644 index 00000000000..8442447ef64 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/centos-7_ppc64le.njk b/install_template/templates/products/edb-pgbouncer/centos-7_ppc64le.njk new file mode 100644 index 00000000000..e6420f9bf37 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-pgbouncer/centos-8.njk b/install_template/templates/products/edb-pgbouncer/centos-8.njk new file mode 100644 index 00000000000..1393480dd70 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb-pgbouncer/debian-10.njk b/install_template/templates/products/edb-pgbouncer/debian-10.njk new file mode 100644 index 00000000000..b08994b1cf5 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/debian-9.njk b/install_template/templates/products/edb-pgbouncer/debian-9.njk new file mode 100644 index 00000000000..a7afcb8dc3d --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-7.njk b/install_template/templates/products/edb-pgbouncer/rhel-7.njk new file mode 100644 index 00000000000..949e08ace3a --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk b/install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..d550d7e6aa5 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-8.njk b/install_template/templates/products/edb-pgbouncer/rhel-8.njk new file mode 100644 index 00000000000..28c9704e0fa --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/sles-12.njk b/install_template/templates/products/edb-pgbouncer/sles-12.njk new file mode 100644 index 00000000000..e58c3610bd1 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/sles-12_ppc64le.njk b/install_template/templates/products/edb-pgbouncer/sles-12_ppc64le.njk new file mode 100644 index 00000000000..e58c3610bd1 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/sles-15.njk b/install_template/templates/products/edb-pgbouncer/sles-15.njk new file mode 100644 index 00000000000..b1dbc01fe18 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/sles-15_ppc64le.njk b/install_template/templates/products/edb-pgbouncer/sles-15_ppc64le.njk new file mode 100644 index 00000000000..795803c92e1 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/ubuntu-18.04.njk b/install_template/templates/products/edb-pgbouncer/ubuntu-18.04.njk new file mode 100644 index 00000000000..2cdc2edfa95 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-pgbouncer/debian-10.njk" %} diff --git a/install_template/templates/products/edb-pgbouncer/ubuntu-20.04.njk b/install_template/templates/products/edb-pgbouncer/ubuntu-20.04.njk new file mode 100644 index 00000000000..2cdc2edfa95 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-pgbouncer/debian-10.njk" %} diff --git a/install_template/templates/products/edb-pgpoolii/base.njk b/install_template/templates/products/edb-pgpoolii/base.njk new file mode 100644 index 00000000000..59c54cda724 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-pgpool{{ product.version | replace(".", "") }}{% endset %} diff --git a/install_template/templates/products/edb-pgpoolii/centos-7.njk b/install_template/templates/products/edb-pgpoolii/centos-7.njk new file mode 100644 index 00000000000..0ced08dfc2f --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/centos-7_ppc64le.njk b/install_template/templates/products/edb-pgpoolii/centos-7_ppc64le.njk new file mode 100644 index 00000000000..93c76f789ec --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-pgpoolii/centos-8.njk b/install_template/templates/products/edb-pgpoolii/centos-8.njk new file mode 100644 index 00000000000..e474f410b32 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "centos-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/edb-pgpoolii/debian-10.njk b/install_template/templates/products/edb-pgpoolii/debian-10.njk new file mode 100644 index 00000000000..72372bfb8d2 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/debian-9.njk b/install_template/templates/products/edb-pgpoolii/debian-9.njk new file mode 100644 index 00000000000..995623c5fea --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-7.njk b/install_template/templates/products/edb-pgpoolii/rhel-7.njk new file mode 100644 index 00000000000..b2fbb9001ec --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk b/install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..e6626a334fd --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-8.njk b/install_template/templates/products/edb-pgpoolii/rhel-8.njk new file mode 100644 index 00000000000..39cb1c7dd4f --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/sles-12.njk b/install_template/templates/products/edb-pgpoolii/sles-12.njk new file mode 100644 index 00000000000..df59d96575d --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/sles-12_ppc64le.njk b/install_template/templates/products/edb-pgpoolii/sles-12_ppc64le.njk new file mode 100644 index 00000000000..df59d96575d --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/sles-15.njk b/install_template/templates/products/edb-pgpoolii/sles-15.njk new file mode 100644 index 00000000000..a43f3e923d4 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/sles-15_ppc64le.njk b/install_template/templates/products/edb-pgpoolii/sles-15_ppc64le.njk new file mode 100644 index 00000000000..f6950412ea1 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/ubuntu-18.04.njk b/install_template/templates/products/edb-pgpoolii/ubuntu-18.04.njk new file mode 100644 index 00000000000..4050a963575 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-pgpoolii/debian-10.njk" %} diff --git a/install_template/templates/products/edb-pgpoolii/ubuntu-20.04.njk b/install_template/templates/products/edb-pgpoolii/ubuntu-20.04.njk new file mode 100644 index 00000000000..4050a963575 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-pgpoolii/debian-10.njk" %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/sles-12_ppc64le.njk b/install_template/templates/products/edb-postgres-advanced-server/sles-12_ppc64le.njk new file mode 100644 index 00000000000..64ac8240b95 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/sles-12_ppc64le.njk @@ -0,0 +1,6 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/sles-15.njk b/install_template/templates/products/edb-postgres-advanced-server/sles-15.njk new file mode 100644 index 00000000000..c57a843fa73 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/sles-15.njk @@ -0,0 +1,6 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/sles-15_ppc64le.njk b/install_template/templates/products/edb-postgres-advanced-server/sles-15_ppc64le.njk new file mode 100644 index 00000000000..a4113efd4f6 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/sles-15_ppc64le.njk @@ -0,0 +1,7 @@ +{% extends "products/edb-postgres-advanced-server/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} +{% block postinstall %} +{% include "products/edb-postgres-advanced-server/_centos-rhel-postinstall.njk" %} +{{ super() }} +{% endblock postinstall %} diff --git a/install_template/templates/products/failover-manager/base.njk b/install_template/templates/products/failover-manager/base.njk new file mode 100644 index 00000000000..1af8521e91a --- /dev/null +++ b/install_template/templates/products/failover-manager/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-efm{{ product.version | replace(".", "") }}{% endset %} diff --git a/install_template/templates/products/failover-manager/centos-7.njk b/install_template/templates/products/failover-manager/centos-7.njk new file mode 100644 index 00000000000..b7569bfc129 --- /dev/null +++ b/install_template/templates/products/failover-manager/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/centos-7_ppc64le.njk b/install_template/templates/products/failover-manager/centos-7_ppc64le.njk new file mode 100644 index 00000000000..3fed018c861 --- /dev/null +++ b/install_template/templates/products/failover-manager/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/failover-manager/centos-8.njk b/install_template/templates/products/failover-manager/centos-8.njk new file mode 100644 index 00000000000..af5aabaec97 --- /dev/null +++ b/install_template/templates/products/failover-manager/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "centos-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/failover-manager/debian-10.njk b/install_template/templates/products/failover-manager/debian-10.njk new file mode 100644 index 00000000000..abc889724f9 --- /dev/null +++ b/install_template/templates/products/failover-manager/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/debian-9.njk b/install_template/templates/products/failover-manager/debian-9.njk new file mode 100644 index 00000000000..4690bbccf6c --- /dev/null +++ b/install_template/templates/products/failover-manager/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/rhel-7.njk b/install_template/templates/products/failover-manager/rhel-7.njk new file mode 100644 index 00000000000..8196d5c5ad4 --- /dev/null +++ b/install_template/templates/products/failover-manager/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/rhel-7_ppc64le.njk b/install_template/templates/products/failover-manager/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..c0fcb6e8f97 --- /dev/null +++ b/install_template/templates/products/failover-manager/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/rhel-8.njk b/install_template/templates/products/failover-manager/rhel-8.njk new file mode 100644 index 00000000000..8e97190785d --- /dev/null +++ b/install_template/templates/products/failover-manager/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/sles-12.njk b/install_template/templates/products/failover-manager/sles-12.njk new file mode 100644 index 00000000000..129146a839c --- /dev/null +++ b/install_template/templates/products/failover-manager/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/sles-12_ppc64le.njk b/install_template/templates/products/failover-manager/sles-12_ppc64le.njk new file mode 100644 index 00000000000..129146a839c --- /dev/null +++ b/install_template/templates/products/failover-manager/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/sles-15.njk b/install_template/templates/products/failover-manager/sles-15.njk new file mode 100644 index 00000000000..a491eff5547 --- /dev/null +++ b/install_template/templates/products/failover-manager/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/sles-15_ppc64le.njk b/install_template/templates/products/failover-manager/sles-15_ppc64le.njk new file mode 100644 index 00000000000..4ea8ce56ede --- /dev/null +++ b/install_template/templates/products/failover-manager/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/failover-manager/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/ubuntu-18.04.njk b/install_template/templates/products/failover-manager/ubuntu-18.04.njk new file mode 100644 index 00000000000..0f8744f2140 --- /dev/null +++ b/install_template/templates/products/failover-manager/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/failover-manager/debian-10.njk" %} diff --git a/install_template/templates/products/failover-manager/ubuntu-20.04.njk b/install_template/templates/products/failover-manager/ubuntu-20.04.njk new file mode 100644 index 00000000000..0f8744f2140 --- /dev/null +++ b/install_template/templates/products/failover-manager/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/failover-manager/debian-10.njk" %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/base.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/base.njk new file mode 100644 index 00000000000..49db2d2c787 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as{{ product.version | replace(".", "") }}-hdfs_fdw{% endset %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk new file mode 100644 index 00000000000..1d2ae335746 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk new file mode 100644 index 00000000000..efaa9c2e7dd --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-8.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-8.njk new file mode 100644 index 00000000000..c32d677f948 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-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/hadoop-foreign-data-wrapper/debian-10.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk new file mode 100644 index 00000000000..5dba7ec69db --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk new file mode 100644 index 00000000000..a08d36cc6db --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7.njk new file mode 100644 index 00000000000..47b83ea72cd --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..5a27ca28545 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8.njk new file mode 100644 index 00000000000..e256453b612 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk new file mode 100644 index 00000000000..84b9ff1f885 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk new file mode 100644 index 00000000000..84b9ff1f885 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk new file mode 100644 index 00000000000..c48b6c0e36b --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk new file mode 100644 index 00000000000..e63b992e7a4 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk new file mode 100644 index 00000000000..ded5f976c67 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk new file mode 100644 index 00000000000..ded5f976c67 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/base.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/base.njk new file mode 100644 index 00000000000..62e9a57152d --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as{{ product.version | replace(".", "") }}-mongo_fdw{% endset %} diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/centos-7.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/centos-7.njk new file mode 100644 index 00000000000..89e975e964b --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/centos-7_ppc64le.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/centos-7_ppc64le.njk new file mode 100644 index 00000000000..d5ff778f8f6 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/centos-8.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/centos-8.njk new file mode 100644 index 00000000000..3d9e44b00ae --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-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/mongodb-foreign-data-wrapper/debian-10.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/debian-10.njk new file mode 100644 index 00000000000..def4e54863f --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/debian-9.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/debian-9.njk new file mode 100644 index 00000000000..3ca74b342c8 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7.njk new file mode 100644 index 00000000000..a5783157042 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..e9a65001740 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8.njk new file mode 100644 index 00000000000..fc462f266f6 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-12.njk new file mode 100644 index 00000000000..2de68a3f06d --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-12_ppc64le.njk new file mode 100644 index 00000000000..2de68a3f06d --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-15.njk new file mode 100644 index 00000000000..78271b89b02 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/sles-15_ppc64le.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-15_ppc64le.njk new file mode 100644 index 00000000000..ba16bf9795d --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/mongodb-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-18.04.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-18.04.njk new file mode 100644 index 00000000000..92f02ffc543 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/mongodb-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-20.04.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-20.04.njk new file mode 100644 index 00000000000..92f02ffc543 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/mongodb-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/base.njk b/install_template/templates/products/mysql-foreign-data-wrapper/base.njk new file mode 100644 index 00000000000..c8cd9977bdd --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as{{ product.version | replace(".", "") }}-mysql8_fdw{% endset %} diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/centos-7.njk b/install_template/templates/products/mysql-foreign-data-wrapper/centos-7.njk new file mode 100644 index 00000000000..3b83c16d289 --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/centos-7_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/centos-7_ppc64le.njk new file mode 100644 index 00000000000..13e9a41605d --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/centos-8.njk b/install_template/templates/products/mysql-foreign-data-wrapper/centos-8.njk new file mode 100644 index 00000000000..e987add22cb --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-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/mysql-foreign-data-wrapper/debian-10.njk b/install_template/templates/products/mysql-foreign-data-wrapper/debian-10.njk new file mode 100644 index 00000000000..5c78f1e2bfe --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/debian-9.njk b/install_template/templates/products/mysql-foreign-data-wrapper/debian-9.njk new file mode 100644 index 00000000000..4a4937ed637 --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7.njk new file mode 100644 index 00000000000..40d20ade839 --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..8896f56cf0d --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-8.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-8.njk new file mode 100644 index 00000000000..3a89cdcd003 --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk new file mode 100644 index 00000000000..6e5742798fe --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk new file mode 100644 index 00000000000..6e5742798fe --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk new file mode 100644 index 00000000000..5fbf3f9c72b --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk new file mode 100644 index 00000000000..4f520b292b4 --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/mysql-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-18.04.njk b/install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-18.04.njk new file mode 100644 index 00000000000..036eb7a22bd --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/mysql-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-20.04.njk b/install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-20.04.njk new file mode 100644 index 00000000000..036eb7a22bd --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/mysql-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/postgis/base.njk b/install_template/templates/products/postgis/base.njk new file mode 100644 index 00000000000..944d50648fa --- /dev/null +++ b/install_template/templates/products/postgis/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as{{ product.version | replace(".", "") }}-postgis3{% endset %} diff --git a/install_template/templates/products/postgis/centos-7.njk b/install_template/templates/products/postgis/centos-7.njk new file mode 100644 index 00000000000..a128c5f2e5e --- /dev/null +++ b/install_template/templates/products/postgis/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/centos-7_ppc64le.njk b/install_template/templates/products/postgis/centos-7_ppc64le.njk new file mode 100644 index 00000000000..f9650069c56 --- /dev/null +++ b/install_template/templates/products/postgis/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/postgis/centos-8.njk b/install_template/templates/products/postgis/centos-8.njk new file mode 100644 index 00000000000..4cc743628e9 --- /dev/null +++ b/install_template/templates/products/postgis/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "centos-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/debian-10.njk b/install_template/templates/products/postgis/debian-10.njk new file mode 100644 index 00000000000..4e234539763 --- /dev/null +++ b/install_template/templates/products/postgis/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/debian-9.njk b/install_template/templates/products/postgis/debian-9.njk new file mode 100644 index 00000000000..f909e5dd276 --- /dev/null +++ b/install_template/templates/products/postgis/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-7.njk b/install_template/templates/products/postgis/rhel-7.njk new file mode 100644 index 00000000000..8dd1202f3ce --- /dev/null +++ b/install_template/templates/products/postgis/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-7_ppc64le.njk b/install_template/templates/products/postgis/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..682caee12a4 --- /dev/null +++ b/install_template/templates/products/postgis/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-8.njk b/install_template/templates/products/postgis/rhel-8.njk new file mode 100644 index 00000000000..9adbf5474ed --- /dev/null +++ b/install_template/templates/products/postgis/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/sles-12.njk b/install_template/templates/products/postgis/sles-12.njk new file mode 100644 index 00000000000..16ebf7fb77b --- /dev/null +++ b/install_template/templates/products/postgis/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/sles-12_ppc64le.njk b/install_template/templates/products/postgis/sles-12_ppc64le.njk new file mode 100644 index 00000000000..16ebf7fb77b --- /dev/null +++ b/install_template/templates/products/postgis/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/sles-15.njk b/install_template/templates/products/postgis/sles-15.njk new file mode 100644 index 00000000000..49f565e1978 --- /dev/null +++ b/install_template/templates/products/postgis/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/sles-15_ppc64le.njk b/install_template/templates/products/postgis/sles-15_ppc64le.njk new file mode 100644 index 00000000000..52ab2a2a358 --- /dev/null +++ b/install_template/templates/products/postgis/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/ubuntu-18.04.njk b/install_template/templates/products/postgis/ubuntu-18.04.njk new file mode 100644 index 00000000000..2a847610e42 --- /dev/null +++ b/install_template/templates/products/postgis/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/postgis/debian-10.njk" %} diff --git a/install_template/templates/products/postgis/ubuntu-20.04.njk b/install_template/templates/products/postgis/ubuntu-20.04.njk new file mode 100644 index 00000000000..2a847610e42 --- /dev/null +++ b/install_template/templates/products/postgis/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/postgis/debian-10.njk" %} diff --git a/install_template/templates/products/postgres-enterprise-manager/base.njk b/install_template/templates/products/postgres-enterprise-manager/base.njk new file mode 100644 index 00000000000..15b197ba7d1 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/base.njk @@ -0,0 +1,11 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-pem{% endset %} +{% block postinstall %} +You can configure the PEM server using the following command: + +```sh +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). +{% endblock postinstall %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/centos-7.njk b/install_template/templates/products/postgres-enterprise-manager/centos-7.njk new file mode 100644 index 00000000000..7c4e64b6d51 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/centos-7_ppc64le.njk b/install_template/templates/products/postgres-enterprise-manager/centos-7_ppc64le.njk new file mode 100644 index 00000000000..aa1dad644ab --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/postgres-enterprise-manager/centos-8.njk b/install_template/templates/products/postgres-enterprise-manager/centos-8.njk new file mode 100644 index 00000000000..15db9e9c398 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "centos-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/postgres-enterprise-manager/debian-10.njk b/install_template/templates/products/postgres-enterprise-manager/debian-10.njk new file mode 100644 index 00000000000..f4ec9da10c6 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/debian-9.njk b/install_template/templates/products/postgres-enterprise-manager/debian-9.njk new file mode 100644 index 00000000000..43e09f5e6d4 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/rhel-7.njk b/install_template/templates/products/postgres-enterprise-manager/rhel-7.njk new file mode 100644 index 00000000000..519e1de974d --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk b/install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..ba942bbfd22 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/rhel-8.njk b/install_template/templates/products/postgres-enterprise-manager/rhel-8.njk new file mode 100644 index 00000000000..7938dd4c9e7 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-12.njk b/install_template/templates/products/postgres-enterprise-manager/sles-12.njk new file mode 100644 index 00000000000..516c2513fdb --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-15.njk b/install_template/templates/products/postgres-enterprise-manager/sles-15.njk new file mode 100644 index 00000000000..11b4376209f --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk b/install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk new file mode 100644 index 00000000000..05f8a505bba --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/ubuntu-18.04.njk b/install_template/templates/products/postgres-enterprise-manager/ubuntu-18.04.njk new file mode 100644 index 00000000000..24bd85e2c44 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/postgres-enterprise-manager/debian-10.njk" %} diff --git a/install_template/templates/products/postgres-enterprise-manager/ubuntu-20.04.njk b/install_template/templates/products/postgres-enterprise-manager/ubuntu-20.04.njk new file mode 100644 index 00000000000..24bd85e2c44 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/postgres-enterprise-manager/debian-10.njk" %} diff --git a/install_template/templates/products/replication-manager/base.njk b/install_template/templates/products/replication-manager/base.njk new file mode 100644 index 00000000000..cb8e3e49f76 --- /dev/null +++ b/install_template/templates/products/replication-manager/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-xdb{% endset %} diff --git a/install_template/templates/products/replication-manager/centos-7.njk b/install_template/templates/products/replication-manager/centos-7.njk new file mode 100644 index 00000000000..a779fca8090 --- /dev/null +++ b/install_template/templates/products/replication-manager/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/centos-7_ppc64le.njk b/install_template/templates/products/replication-manager/centos-7_ppc64le.njk new file mode 100644 index 00000000000..e313531ac2c --- /dev/null +++ b/install_template/templates/products/replication-manager/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/replication-manager/centos-8.njk b/install_template/templates/products/replication-manager/centos-8.njk new file mode 100644 index 00000000000..02c8d09e360 --- /dev/null +++ b/install_template/templates/products/replication-manager/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "centos-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/replication-manager/debian-10.njk b/install_template/templates/products/replication-manager/debian-10.njk new file mode 100644 index 00000000000..1c971078589 --- /dev/null +++ b/install_template/templates/products/replication-manager/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/debian-9.njk b/install_template/templates/products/replication-manager/debian-9.njk new file mode 100644 index 00000000000..d91d455ef6f --- /dev/null +++ b/install_template/templates/products/replication-manager/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/rhel-7.njk b/install_template/templates/products/replication-manager/rhel-7.njk new file mode 100644 index 00000000000..23f479fdb79 --- /dev/null +++ b/install_template/templates/products/replication-manager/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/rhel-7_ppc64le.njk b/install_template/templates/products/replication-manager/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..1f162a8d745 --- /dev/null +++ b/install_template/templates/products/replication-manager/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/rhel-8.njk b/install_template/templates/products/replication-manager/rhel-8.njk new file mode 100644 index 00000000000..b998d510370 --- /dev/null +++ b/install_template/templates/products/replication-manager/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/sles-12.njk b/install_template/templates/products/replication-manager/sles-12.njk new file mode 100644 index 00000000000..a27209db545 --- /dev/null +++ b/install_template/templates/products/replication-manager/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/sles-12_ppc64le.njk b/install_template/templates/products/replication-manager/sles-12_ppc64le.njk new file mode 100644 index 00000000000..a27209db545 --- /dev/null +++ b/install_template/templates/products/replication-manager/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/sles-15.njk b/install_template/templates/products/replication-manager/sles-15.njk new file mode 100644 index 00000000000..14bc7aa5abb --- /dev/null +++ b/install_template/templates/products/replication-manager/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/sles-15_ppc64le.njk b/install_template/templates/products/replication-manager/sles-15_ppc64le.njk new file mode 100644 index 00000000000..8fa2837f6f1 --- /dev/null +++ b/install_template/templates/products/replication-manager/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/replication-manager/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/ubuntu-18.04.njk b/install_template/templates/products/replication-manager/ubuntu-18.04.njk new file mode 100644 index 00000000000..6265540ff01 --- /dev/null +++ b/install_template/templates/products/replication-manager/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/replication-manager/debian-10.njk" %} diff --git a/install_template/templates/products/replication-manager/ubuntu-20.04.njk b/install_template/templates/products/replication-manager/ubuntu-20.04.njk new file mode 100644 index 00000000000..6265540ff01 --- /dev/null +++ b/install_template/templates/products/replication-manager/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/replication-manager/debian-10.njk" %} diff --git a/install_template/templates/products/slony-replication/base.njk b/install_template/templates/products/slony-replication/base.njk new file mode 100644 index 00000000000..1913897c0fe --- /dev/null +++ b/install_template/templates/products/slony-replication/base.njk @@ -0,0 +1,2 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as{{ product.version | replace(".", "") }}-slony-replication{% endset %} diff --git a/install_template/templates/products/slony-replication/centos-7.njk b/install_template/templates/products/slony-replication/centos-7.njk new file mode 100644 index 00000000000..4bf02c01d4c --- /dev/null +++ b/install_template/templates/products/slony-replication/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/centos-7_ppc64le.njk b/install_template/templates/products/slony-replication/centos-7_ppc64le.njk new file mode 100644 index 00000000000..065ad4086f6 --- /dev/null +++ b/install_template/templates/products/slony-replication/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/slony-replication/centos-8.njk b/install_template/templates/products/slony-replication/centos-8.njk new file mode 100644 index 00000000000..b9113d02dfa --- /dev/null +++ b/install_template/templates/products/slony-replication/centos-8.njk @@ -0,0 +1,10 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "centos-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/slony-replication/debian-10.njk b/install_template/templates/products/slony-replication/debian-10.njk new file mode 100644 index 00000000000..e23b9f8d310 --- /dev/null +++ b/install_template/templates/products/slony-replication/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/debian-9.njk b/install_template/templates/products/slony-replication/debian-9.njk new file mode 100644 index 00000000000..3aec469be7f --- /dev/null +++ b/install_template/templates/products/slony-replication/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/rhel-7.njk b/install_template/templates/products/slony-replication/rhel-7.njk new file mode 100644 index 00000000000..3466801e5e2 --- /dev/null +++ b/install_template/templates/products/slony-replication/rhel-7.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/rhel-7_ppc64le.njk b/install_template/templates/products/slony-replication/rhel-7_ppc64le.njk new file mode 100644 index 00000000000..99203c4554d --- /dev/null +++ b/install_template/templates/products/slony-replication/rhel-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/rhel-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/rhel-8.njk b/install_template/templates/products/slony-replication/rhel-8.njk new file mode 100644 index 00000000000..8a7d77be9b6 --- /dev/null +++ b/install_template/templates/products/slony-replication/rhel-8.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/sles-12.njk b/install_template/templates/products/slony-replication/sles-12.njk new file mode 100644 index 00000000000..f43b4af4794 --- /dev/null +++ b/install_template/templates/products/slony-replication/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/sles-12_ppc64le.njk b/install_template/templates/products/slony-replication/sles-12_ppc64le.njk new file mode 100644 index 00000000000..f43b4af4794 --- /dev/null +++ b/install_template/templates/products/slony-replication/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/sles-15.njk b/install_template/templates/products/slony-replication/sles-15.njk new file mode 100644 index 00000000000..fbc342784ee --- /dev/null +++ b/install_template/templates/products/slony-replication/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/sles-15_ppc64le.njk b/install_template/templates/products/slony-replication/sles-15_ppc64le.njk new file mode 100644 index 00000000000..eb96a147bec --- /dev/null +++ b/install_template/templates/products/slony-replication/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/slony-replication/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/ubuntu-18.04.njk b/install_template/templates/products/slony-replication/ubuntu-18.04.njk new file mode 100644 index 00000000000..064a819d021 --- /dev/null +++ b/install_template/templates/products/slony-replication/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/slony-replication/debian-10.njk" %} diff --git a/install_template/templates/products/slony-replication/ubuntu-20.04.njk b/install_template/templates/products/slony-replication/ubuntu-20.04.njk new file mode 100644 index 00000000000..064a819d021 --- /dev/null +++ b/install_template/templates/products/slony-replication/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/slony-replication/debian-10.njk" %} From 634543c20c0e9e029603e5cd8e3204be9ad4ac3b Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Thu, 10 Feb 2022 09:34:32 +0530 Subject: [PATCH 010/180] Changed the Setting up repository commands to single code block Changed the Setting up repository commands to single code block --- install_template/config.yaml | 7 -- .../templates/platformBase/_shared.njk | 28 +++--- .../templates/platformBase/base.njk | 23 ++--- .../templates/platformBase/centos-7.njk | 37 +++---- .../templates/platformBase/centos-8.njk | 16 ++- .../templates/platformBase/debian-10.njk | 34 +++---- .../templates/platformBase/debian-9.njk | 10 +- .../templates/platformBase/rhel-7.njk | 99 ++++++++----------- .../platformBase/rhel-8-centos-8-ol-8.njk | 12 +-- .../templates/platformBase/rhel-8.njk | 24 +++-- .../templates/platformBase/sles-12.njk | 89 ++++------------- .../templates/platformBase/sles-15.njk | 31 ++---- .../postgres-enterprise-manager/base.njk | 11 ++- 13 files changed, 158 insertions(+), 263 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index ca0601583bc..fda9982b6e3 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -347,12 +347,6 @@ products: supported versions: [13, 14] - name: SLES 12 arch: x86_64 -<<<<<<< Updated upstream - supported versions: [9.6, 11, 12] - - name: RHEL 8 or CentOS 8 or OL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] -======= supported versions: [9.6, 11, 12, 13, 14] - name: SLES 15 arch: x86_64 @@ -762,4 +756,3 @@ products: ->>>>>>> Stashed changes diff --git a/install_template/templates/platformBase/_shared.njk b/install_template/templates/platformBase/_shared.njk index 6596391d63e..37dd7939640 100644 --- a/install_template/templates/platformBase/_shared.njk +++ b/install_template/templates/platformBase/_shared.njk @@ -1,24 +1,18 @@ {% macro centosRepositoryConfiguration(packageManager, epelRepo) %} -1. Set up the EDB repository: +```shell +# Set up the EDB repository: +{{ packageManager }} -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. - ```sh - {{ packageManager }} -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - ``` - This creates the /etc/yum.repos.d/edb.repo configuration file. - -1. Replace `'USERNAME:PASSWORD'` below with your username and password available from your +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your [EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ```sh - sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - ``` - -1. Install EPEL repository and refresh the cache: - - ```sh - {{ packageManager }} -y install {{ epelRepo }} - {{ packageManager }} makecache - ``` +# Install EPEL repository and refresh the cache: +{{ packageManager }} -y install {{ epelRepo }} +{{ packageManager }} makecache +``` {% endmacro %} {% macro centosInstallCommand(packageManager, packageName) %}{{packageManager}} -y install {{ packageName }}{% endmacro %} \ No newline at end of file diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 33ef7325977..824479597cb 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -1,27 +1,21 @@ # Installing {{ product.name }} {{ product.version }} on {{ platform.name }} {{ platform.arch }} -<<<<<<< Updated upstream -This topic describes how to install {{ product.name }} and includes two steps to completing an installation: -======= -This topic describes how to install {{ product.name }} and includes steps for getting started. - There are three steps to completing an installation: ->>>>>>> Stashed changes -- Setting up the repository -- Installing the package +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) For each step, you must be logged in as superuser. -To log in as a superuser: - -```sh +```shell +# To log in as a superuser: sudo su - ``` -## Setting up the Repository +Before setting up the repository, you need to 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). +## Setting up the Repository {% block prerequisites %}{% endblock prerequisites %} @@ -29,3 +23,6 @@ sudo su - {% block installCommand %}{% endblock installCommand %} +## Initial Configuration +{% block postinstall %}{% endblock postinstall %} + diff --git a/install_template/templates/platformBase/centos-7.njk b/install_template/templates/platformBase/centos-7.njk index 1b3ffdaf386..fa9517fc626 100644 --- a/install_template/templates/platformBase/centos-7.njk +++ b/install_template/templates/platformBase/centos-7.njk @@ -2,31 +2,32 @@ {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} {% block prerequisites %} {% if includePPC %} -1. Install Advance Toolchain +# Install Advance Toolchain - ```sh - rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - cat > /etc/yum.repos.d/advance-toolchain.repo < /etc/yum.repos.d/advance-toolchain.repo < /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - ``` +# Setup the EDB repository +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -1. Replace '' and '' below with your username and password for the EDB repositories: - ```sh - echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - ``` +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf {% endblock repoAuth %} -1. Add support for secure APT repositories: - ```sh - apt-get -y install apt-transport-https - ``` +# Add support for secure APT repositories: +apt-get -y install apt-transport-https -1. Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - ```sh - wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - ``` +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - -1. Update the repository meta data: - ```sh - apt-get update - ``` +# Update the repository meta data: +apt-get update +``` {% endblock prerequisites %} {% block installCommand %} -```sh +```shell apt-get -y install {{ packageName }} ``` {% endblock installCommand %} diff --git a/install_template/templates/platformBase/debian-9.njk b/install_template/templates/platformBase/debian-9.njk index 212a616f965..be5fb1535fa 100644 --- a/install_template/templates/platformBase/debian-9.njk +++ b/install_template/templates/platformBase/debian-9.njk @@ -1,9 +1,9 @@ {% extends "platformBase/debian-10.njk" %} {% block repoAuth %} -1. Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - ```sh - echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - ``` - This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. {% endblock repoAuth %} diff --git a/install_template/templates/platformBase/rhel-7.njk b/install_template/templates/platformBase/rhel-7.njk index cb3b88ce18f..b547731eb29 100644 --- a/install_template/templates/platformBase/rhel-7.njk +++ b/install_template/templates/platformBase/rhel-7.njk @@ -2,64 +2,49 @@ {% block prerequisites %} {{ super() }} - -1. Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: - - ```sh - subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - ``` +```shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" {% if includeLOCAL %} -1. Install the `createrepo` utility on the source server to create the local repository: - ```sh - yum install -y yum-utils createrepo - ``` - -1. Import EDB GPG key installed from edb-repo and also the other repositories: - ```sh - rpm --import /etc/pki/rpm-gpg/* - ``` - -1. Create the download directory, download all the required packages and populate it using `createrepo`: - ```sh - $ mkdir -p /tmp/yumdownloaddir - $ cd /tmp/yumdownloaddir - $ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart - $ createrepo /tmp/yumdownloaddir - ``` - -1. Zip up the download directory, ready to be shipped to the target server(s): - ```sh - $ cd /tmp - $ tar -zcvf yumdownloaddir.tgz yumdownloaddir - ``` - -1. Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. - ```sh - sudo su - - tar -xvf /tmp/yumdownloaddir.tgz - ``` - -1. Install the edb repo file and import the EDB GPG key from the archive: - ```sh - yum localinstall yumdownloaddir/edb-repo*.rpm - rpm --import /etc/pki/rpm-gpg/* - ``` - This creates the /etc/yum.repos.d/edb.repo configuration file. - -1. Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: - ```sh - cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo - vi /etc/yum.repos.d/edb_local.repo - [edb-localrepo] - name=EnterpriseDB Localrepo for install without internet access - baseurl=file:///tmp/yumdownloaddir/ - enabled=1 - repo_gpgcheck=0 - gpgcheck=1 - gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY - #skip_if_unavailable = 1 - #keepcache = 0 - ``` +# Install the `createrepo` utility on the source server to create the local repository: +yum install -y yum-utils createrepo + +# Import EDB GPG key installed from edb-repo and also the other repositories: +rpm --import /etc/pki/rpm-gpg/* + +# Create the download directory, download all the required packages and populate it using `createrepo`: +$ mkdir -p /tmp/yumdownloaddir +$ cd /tmp/yumdownloaddir +$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart +$ createrepo /tmp/yumdownloaddir + +# Zip up the download directory, ready to be shipped to the target server(s): +$ cd /tmp +$ tar -zcvf yumdownloaddir.tgz yumdownloaddir + +# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. +sudo su - +tar -xvf /tmp/yumdownloaddir.tgz + +# Install the edb repo file and import the EDB GPG key from the archive: +yum localinstall yumdownloaddir/edb-repo*.rpm +rpm --import /etc/pki/rpm-gpg/* + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: +cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo +vi /etc/yum.repos.d/edb_local.repo +[edb-localrepo] +name=EnterpriseDB Localrepo for install without internet access +baseurl=file:///tmp/yumdownloaddir/ +enabled=1 +repo_gpgcheck=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +#skip_if_unavailable = 1 +#keepcache = 0 +``` {% endif %} {% endblock prerequisites %} diff --git a/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk b/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk index 85bdd223e92..dc2c08f31b5 100644 --- a/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk +++ b/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk @@ -6,26 +6,26 @@ - For RHEL, the `codeready-builder-for-rhel-8-*-rpms` repository: - ```sh + ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` - For CentOS, the `powertools` repository: - ```sh + ```shell dnf config-manager --set-enabled powertools ``` 1. Disable the built-in PostgreSQL module: - ```sh + ```shell dnf -qy module disable postgresql ``` {% endblock prerequisites %} {% block installCommand %} - ```sh - {{ centosInstallCommand("dnf", packageName) }} - ``` +```shell +{{ centosInstallCommand("dnf", packageName) }} +``` !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. {% endblock installCommand %} diff --git a/install_template/templates/platformBase/rhel-8.njk b/install_template/templates/platformBase/rhel-8.njk index 64c7d60ef80..f93689be890 100644 --- a/install_template/templates/platformBase/rhel-8.njk +++ b/install_template/templates/platformBase/rhel-8.njk @@ -2,22 +2,20 @@ {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} {% block prerequisites %} {{ centosRepositoryConfiguration("dnf", "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 +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +ARCH=$( /bin/arch ) +subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ```sh - ARCH=$( /bin/arch ) - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` {% endblock prerequisites %} {% block installCommand %} - ```sh - {{ centosInstallCommand("dnf", packageName) }} - ``` +```shell +{{ centosInstallCommand("dnf", packageName) }} +``` + !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. {% endblock installCommand %} diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 46169ca0d40..f01f00208e8 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,94 +1,39 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -<<<<<<< Updated upstream -1. Install the repository configuration - - ```sh - zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - ``` - -1. Refresh the metadata - - ```sh - zypper refresh - ``` - -1. Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories - - ```sh - zypper install SUSEConnect - ``` - -1. Register the host with SUSE, allowing access to SUSE repositories - - Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information - - ```sh - SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - SUSEConnect -p PackageHub/12.4/x86_64 - SUSEConnect -p sle-sdk/12.4/x86_64 - ``` -======= -### Install the repository configuration -```sh +```shell +# Install the repository configuration zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -``` -### Refresh the metadata -```sh +# Refresh the metadata zypper refresh -``` -### Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -```sh +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories zypper install SUSEConnect -``` -### Register the host with SUSE, allowing access to SUSE repositories -Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -```sh +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' SUSEConnect -p PackageHub/12.5/x86_64 SUSEConnect -p sle-sdk/12.5/x86_64 -``` - -### Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo -``` -### Refresh the metadata -```sh +# Refresh the metadata zypper refresh -``` # Install OpenJDK (version 1.8) for Java based components -```sh zypper -n install java-1_8_0-openjdk -``` -{% endblock prerequisites %} ->>>>>>> Stashed changes - -1. Install the following repository for PEM dependencies - - ```sh - zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - ``` - -1. Refresh the metadata - ```sh - zypper refresh - ``` +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo -1. Install OpenJDK (version 1.8) for Java based components +# Refresh the metadata +zypper refresh - ```sh - zypper -n install java-1_8_0-openjdk - ``` +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` {% endblock prerequisites %} {% block installCommand %} - ```sh - zypper -n install {{ packageName }} - ``` +```shell +zypper -n install {{ packageName }} +``` {% endblock installCommand %} diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 0672a2657cd..e39e752be57 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,45 +1,30 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -### Install the repository configuration -```sh +```shell +# Install the repository configuration zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -``` -### Refresh the metadata -```sh +# Refresh the metadata zypper refresh -``` -### Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -```sh +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories zypper install SUSEConnect -``` -### Register the host with SUSE, allowing access to SUSE repositories -Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -```sh +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' SUSEConnect -p PackageHub/15.3/x86_64 -``` -### Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - -### Refresh the metadata -```sh +# Refresh the metadata zypper refresh -``` # Install OpenJDK (version 11) for Java based components -```sh zypper -n install java-11-openjdk ``` {% endblock prerequisites %} {% block installCommand %} -```sh +```shell zypper -n install {{ packageName }} ``` {% endblock installCommand %} diff --git a/install_template/templates/products/postgres-enterprise-manager/base.njk b/install_template/templates/products/postgres-enterprise-manager/base.njk index 15b197ba7d1..13a26f4066d 100644 --- a/install_template/templates/products/postgres-enterprise-manager/base.njk +++ b/install_template/templates/products/postgres-enterprise-manager/base.njk @@ -1,9 +1,16 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-pem{% endset %} +{% block prerequisites %} +{{ super() }} +# Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` +{% endblock prerequisites %} {% block postinstall %} -You can configure the PEM server using the following command: +```shell +# You can configure the PEM server using the following command: -```sh /usr/edb/pem/bin/configure-pem-server.sh ``` From ea1410c9a88ae4ea2087acf3abd221d838ab557c Mon Sep 17 00:00:00 2001 From: Josh Heyer <63653723+josh-heyer@users.noreply.github.com> Date: Thu, 10 Feb 2022 09:17:06 -0700 Subject: [PATCH 011/180] Allow checking in renders --- install_template/.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install_template/.gitignore b/install_template/.gitignore index 980480391dc..c21bbed6bd0 100644 --- a/install_template/.gitignore +++ b/install_template/.gitignore @@ -1,4 +1,5 @@ node_modules/ -renders/* +# when ready to go live (before merging into develop) then uncomment this line and remove renders (and also add logic to copy these files to their intended destination) +#renders/* !renders/.gitkeep .DS_Store From 1e41c949f0789176ac8747ea39420428dac51d3b Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Thu, 10 Feb 2022 21:50:23 +0530 Subject: [PATCH 012/180] Generated all the files Generated all the files --- .../renders/edb*plus_11_centos-7_ppc64le.mdx | 62 +++++++ .../renders/edb*plus_11_centos-7_x86_64.mdx | 44 +++++ .../renders/edb*plus_11_centos-8_x86_64.mdx | 52 ++++++ .../renders/edb*plus_11_debian-10_x86_64.mdx | 45 +++++ .../renders/edb*plus_11_debian-9_x86_64.mdx | 50 ++++++ .../renders/edb*plus_11_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/edb*plus_11_rhel-7_x86_64.mdx | 51 ++++++ .../renders/edb*plus_11_rhel-8_x86_64.mdx | 53 ++++++ .../renders/edb*plus_11_sles-12_ppc64le.mdx | 58 ++++++ .../renders/edb*plus_11_sles-12_x86_64.mdx | 58 ++++++ .../renders/edb*plus_11_sles-15_ppc64le.mdx | 48 +++++ .../renders/edb*plus_11_sles-15_x86_64.mdx | 48 +++++ .../edb*plus_11_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb*plus_11_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/edb*plus_12_centos-7_ppc64le.mdx | 62 +++++++ .../renders/edb*plus_12_centos-7_x86_64.mdx | 44 +++++ .../renders/edb*plus_12_centos-8_x86_64.mdx | 52 ++++++ .../renders/edb*plus_12_debian-10_x86_64.mdx | 45 +++++ .../renders/edb*plus_12_debian-9_x86_64.mdx | 50 ++++++ .../renders/edb*plus_12_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/edb*plus_12_rhel-7_x86_64.mdx | 51 ++++++ .../renders/edb*plus_12_rhel-8_x86_64.mdx | 53 ++++++ .../renders/edb*plus_12_sles-12_ppc64le.mdx | 58 ++++++ .../renders/edb*plus_12_sles-12_x86_64.mdx | 58 ++++++ .../renders/edb*plus_12_sles-15_ppc64le.mdx | 48 +++++ .../renders/edb*plus_12_sles-15_x86_64.mdx | 48 +++++ .../edb*plus_12_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb*plus_12_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/edb*plus_13_centos-7_ppc64le.mdx | 62 +++++++ .../renders/edb*plus_13_centos-7_x86_64.mdx | 44 +++++ .../renders/edb*plus_13_centos-8_x86_64.mdx | 52 ++++++ .../renders/edb*plus_13_debian-10_x86_64.mdx | 45 +++++ .../renders/edb*plus_13_debian-9_x86_64.mdx | 50 ++++++ .../renders/edb*plus_13_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/edb*plus_13_rhel-7_x86_64.mdx | 51 ++++++ .../renders/edb*plus_13_rhel-8_x86_64.mdx | 53 ++++++ .../renders/edb*plus_13_sles-12_ppc64le.mdx | 58 ++++++ .../renders/edb*plus_13_sles-12_x86_64.mdx | 58 ++++++ .../renders/edb*plus_13_sles-15_ppc64le.mdx | 48 +++++ .../renders/edb*plus_13_sles-15_x86_64.mdx | 48 +++++ .../edb*plus_13_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb*plus_13_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/edb*plus_14_centos-7_ppc64le.mdx | 62 +++++++ .../renders/edb*plus_14_centos-7_x86_64.mdx | 44 +++++ .../renders/edb*plus_14_centos-8_x86_64.mdx | 52 ++++++ .../renders/edb*plus_14_debian-10_x86_64.mdx | 45 +++++ .../renders/edb*plus_14_debian-9_x86_64.mdx | 50 ++++++ .../renders/edb*plus_14_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/edb*plus_14_rhel-7_x86_64.mdx | 51 ++++++ .../renders/edb*plus_14_rhel-8_x86_64.mdx | 53 ++++++ .../renders/edb*plus_14_sles-12_ppc64le.mdx | 58 ++++++ .../renders/edb*plus_14_sles-12_x86_64.mdx | 58 ++++++ .../renders/edb*plus_14_sles-15_ppc64le.mdx | 48 +++++ .../renders/edb*plus_14_sles-15_x86_64.mdx | 48 +++++ .../edb*plus_14_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb*plus_14_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/edb*plus_9.6_centos-7_ppc64le.mdx | 62 +++++++ .../renders/edb*plus_9.6_centos-7_x86_64.mdx | 44 +++++ .../renders/edb*plus_9.6_centos-8_x86_64.mdx | 52 ++++++ .../renders/edb*plus_9.6_debian-10_x86_64.mdx | 45 +++++ .../renders/edb*plus_9.6_debian-9_x86_64.mdx | 50 ++++++ .../renders/edb*plus_9.6_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/edb*plus_9.6_rhel-7_x86_64.mdx | 51 ++++++ .../renders/edb*plus_9.6_rhel-8_x86_64.mdx | 53 ++++++ .../renders/edb*plus_9.6_sles-12_ppc64le.mdx | 58 ++++++ .../renders/edb*plus_9.6_sles-12_x86_64.mdx | 58 ++++++ .../renders/edb*plus_9.6_sles-15_ppc64le.mdx | 48 +++++ .../renders/edb*plus_9.6_sles-15_x86_64.mdx | 48 +++++ .../edb*plus_9.6_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb*plus_9.6_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/edb-bart_2.6_centos-7_ppc64le.mdx | 62 +++++++ .../renders/edb-bart_2.6_centos-7_x86_64.mdx | 44 +++++ .../renders/edb-bart_2.6_centos-8_x86_64.mdx | 52 ++++++ .../renders/edb-bart_2.6_debian-10_x86_64.mdx | 45 +++++ .../renders/edb-bart_2.6_debian-9_x86_64.mdx | 50 ++++++ .../renders/edb-bart_2.6_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/edb-bart_2.6_rhel-7_x86_64.mdx | 51 ++++++ .../renders/edb-bart_2.6_rhel-8_x86_64.mdx | 53 ++++++ .../renders/edb-bart_2.6_sles-12_ppc64le.mdx | 58 ++++++ .../renders/edb-bart_2.6_sles-12_x86_64.mdx | 58 ++++++ .../renders/edb-bart_2.6_sles-15_ppc64le.mdx | 48 +++++ .../renders/edb-bart_2.6_sles-15_x86_64.mdx | 48 +++++ .../edb-bart_2.6_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb-bart_2.6_ubuntu-20.04_x86_64.mdx | 45 +++++ ...jdbc-connector_42.x.x_centos-7_ppc64le.mdx | 62 +++++++ ...-jdbc-connector_42.x.x_centos-7_x86_64.mdx | 44 +++++ ...-jdbc-connector_42.x.x_centos-8_x86_64.mdx | 52 ++++++ ...jdbc-connector_42.x.x_debian-10_x86_64.mdx | 45 +++++ ...-jdbc-connector_42.x.x_debian-9_x86_64.mdx | 50 ++++++ ...b-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx | 69 ++++++++ ...db-jdbc-connector_42.x.x_rhel-7_x86_64.mdx | 51 ++++++ ...db-jdbc-connector_42.x.x_rhel-8_x86_64.mdx | 53 ++++++ ...-jdbc-connector_42.x.x_sles-12_ppc64le.mdx | 58 ++++++ ...b-jdbc-connector_42.x.x_sles-12_x86_64.mdx | 58 ++++++ ...-jdbc-connector_42.x.x_sles-15_ppc64le.mdx | 48 +++++ ...b-jdbc-connector_42.x.x_sles-15_x86_64.mdx | 48 +++++ ...c-connector_42.x.x_ubuntu-18.04_x86_64.mdx | 45 +++++ ...c-connector_42.x.x_ubuntu-20.04_x86_64.mdx | 45 +++++ ...b-migrationtoolkit_54_centos-7_ppc64le.mdx | 62 +++++++ ...db-migrationtoolkit_54_centos-7_x86_64.mdx | 44 +++++ ...db-migrationtoolkit_54_centos-8_x86_64.mdx | 52 ++++++ ...b-migrationtoolkit_54_debian-10_x86_64.mdx | 45 +++++ ...db-migrationtoolkit_54_debian-9_x86_64.mdx | 50 ++++++ ...edb-migrationtoolkit_54_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-migrationtoolkit_54_rhel-7_x86_64.mdx | 51 ++++++ .../edb-migrationtoolkit_54_rhel-8_x86_64.mdx | 53 ++++++ ...db-migrationtoolkit_54_sles-12_ppc64le.mdx | 58 ++++++ ...edb-migrationtoolkit_54_sles-12_x86_64.mdx | 58 ++++++ ...db-migrationtoolkit_54_sles-15_ppc64le.mdx | 48 +++++ ...edb-migrationtoolkit_54_sles-15_x86_64.mdx | 48 +++++ ...igrationtoolkit_54_ubuntu-18.04_x86_64.mdx | 45 +++++ ...igrationtoolkit_54_ubuntu-20.04_x86_64.mdx | 45 +++++ ...b-migrationtoolkit_55_centos-7_ppc64le.mdx | 62 +++++++ ...db-migrationtoolkit_55_centos-7_x86_64.mdx | 44 +++++ ...db-migrationtoolkit_55_centos-8_x86_64.mdx | 52 ++++++ ...b-migrationtoolkit_55_debian-10_x86_64.mdx | 45 +++++ ...db-migrationtoolkit_55_debian-9_x86_64.mdx | 50 ++++++ ...edb-migrationtoolkit_55_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-migrationtoolkit_55_rhel-7_x86_64.mdx | 51 ++++++ .../edb-migrationtoolkit_55_rhel-8_x86_64.mdx | 53 ++++++ ...db-migrationtoolkit_55_sles-12_ppc64le.mdx | 58 ++++++ ...edb-migrationtoolkit_55_sles-12_x86_64.mdx | 58 ++++++ ...db-migrationtoolkit_55_sles-15_ppc64le.mdx | 48 +++++ ...edb-migrationtoolkit_55_sles-15_x86_64.mdx | 48 +++++ ...igrationtoolkit_55_ubuntu-18.04_x86_64.mdx | 45 +++++ ...igrationtoolkit_55_ubuntu-20.04_x86_64.mdx | 45 +++++ ...ci-connector_14.1.0.1_centos-7_ppc64le.mdx | 62 +++++++ ...oci-connector_14.1.0.1_centos-7_x86_64.mdx | 44 +++++ ...oci-connector_14.1.0.1_centos-8_x86_64.mdx | 52 ++++++ ...ci-connector_14.1.0.1_debian-10_x86_64.mdx | 45 +++++ ...oci-connector_14.1.0.1_debian-9_x86_64.mdx | 50 ++++++ ...-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx | 69 ++++++++ ...b-oci-connector_14.1.0.1_rhel-7_x86_64.mdx | 51 ++++++ ...b-oci-connector_14.1.0.1_rhel-8_x86_64.mdx | 53 ++++++ ...oci-connector_14.1.0.1_sles-12_ppc64le.mdx | 58 ++++++ ...-oci-connector_14.1.0.1_sles-12_x86_64.mdx | 58 ++++++ ...oci-connector_14.1.0.1_sles-15_ppc64le.mdx | 48 +++++ ...-oci-connector_14.1.0.1_sles-15_x86_64.mdx | 48 +++++ ...connector_14.1.0.1_ubuntu-18.04_x86_64.mdx | 45 +++++ ...connector_14.1.0.1_ubuntu-20.04_x86_64.mdx | 45 +++++ ...bc-connector_13.1.0.2_centos-7_ppc64le.mdx | 62 +++++++ ...dbc-connector_13.1.0.2_centos-7_x86_64.mdx | 44 +++++ ...dbc-connector_13.1.0.2_centos-8_x86_64.mdx | 52 ++++++ ...bc-connector_13.1.0.2_debian-10_x86_64.mdx | 45 +++++ ...dbc-connector_13.1.0.2_debian-9_x86_64.mdx | 50 ++++++ ...odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx | 69 ++++++++ ...-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx | 51 ++++++ ...-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx | 53 ++++++ ...dbc-connector_13.1.0.2_sles-12_ppc64le.mdx | 58 ++++++ ...odbc-connector_13.1.0.2_sles-12_x86_64.mdx | 58 ++++++ ...dbc-connector_13.1.0.2_sles-15_ppc64le.mdx | 48 +++++ ...odbc-connector_13.1.0.2_sles-15_x86_64.mdx | 48 +++++ ...connector_13.1.0.2_ubuntu-18.04_x86_64.mdx | 45 +++++ ...connector_13.1.0.2_ubuntu-20.04_x86_64.mdx | 45 +++++ .../edb-pgbouncer_1.14_centos-7_ppc64le.mdx | 62 +++++++ .../edb-pgbouncer_1.14_centos-7_x86_64.mdx | 44 +++++ .../edb-pgbouncer_1.14_centos-8_x86_64.mdx | 52 ++++++ .../edb-pgbouncer_1.14_debian-10_x86_64.mdx | 45 +++++ .../edb-pgbouncer_1.14_debian-9_x86_64.mdx | 50 ++++++ .../edb-pgbouncer_1.14_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-pgbouncer_1.14_rhel-7_x86_64.mdx | 51 ++++++ .../edb-pgbouncer_1.14_rhel-8_x86_64.mdx | 53 ++++++ .../edb-pgbouncer_1.14_sles-12_ppc64le.mdx | 58 ++++++ .../edb-pgbouncer_1.14_sles-12_x86_64.mdx | 58 ++++++ .../edb-pgbouncer_1.14_sles-15_ppc64le.mdx | 48 +++++ .../edb-pgbouncer_1.14_sles-15_x86_64.mdx | 48 +++++ ...edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx | 45 +++++ ...edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx | 45 +++++ .../edb-pgbouncer_1.15_centos-7_ppc64le.mdx | 62 +++++++ .../edb-pgbouncer_1.15_centos-7_x86_64.mdx | 44 +++++ .../edb-pgbouncer_1.15_centos-8_x86_64.mdx | 52 ++++++ .../edb-pgbouncer_1.15_debian-10_x86_64.mdx | 45 +++++ .../edb-pgbouncer_1.15_debian-9_x86_64.mdx | 50 ++++++ .../edb-pgbouncer_1.15_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-pgbouncer_1.15_rhel-7_x86_64.mdx | 51 ++++++ .../edb-pgbouncer_1.15_rhel-8_x86_64.mdx | 53 ++++++ .../edb-pgbouncer_1.15_sles-12_ppc64le.mdx | 58 ++++++ .../edb-pgbouncer_1.15_sles-12_x86_64.mdx | 58 ++++++ .../edb-pgbouncer_1.15_sles-15_ppc64le.mdx | 48 +++++ .../edb-pgbouncer_1.15_sles-15_x86_64.mdx | 48 +++++ ...edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx | 45 +++++ ...edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx | 45 +++++ .../edb-pgbouncer_1.16_centos-7_ppc64le.mdx | 62 +++++++ .../edb-pgbouncer_1.16_centos-7_x86_64.mdx | 44 +++++ .../edb-pgbouncer_1.16_centos-8_x86_64.mdx | 52 ++++++ .../edb-pgbouncer_1.16_debian-10_x86_64.mdx | 45 +++++ .../edb-pgbouncer_1.16_debian-9_x86_64.mdx | 50 ++++++ .../edb-pgbouncer_1.16_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-pgbouncer_1.16_rhel-7_x86_64.mdx | 51 ++++++ .../edb-pgbouncer_1.16_rhel-8_x86_64.mdx | 53 ++++++ .../edb-pgbouncer_1.16_sles-12_ppc64le.mdx | 58 ++++++ .../edb-pgbouncer_1.16_sles-12_x86_64.mdx | 58 ++++++ .../edb-pgbouncer_1.16_sles-15_ppc64le.mdx | 48 +++++ .../edb-pgbouncer_1.16_sles-15_x86_64.mdx | 48 +++++ ...edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx | 45 +++++ ...edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.1_centos-7_ppc64le.mdx | 62 +++++++ .../edb-pgpoolii_4.1_centos-7_x86_64.mdx | 44 +++++ .../edb-pgpoolii_4.1_centos-8_x86_64.mdx | 52 ++++++ .../edb-pgpoolii_4.1_debian-10_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.1_debian-9_x86_64.mdx | 50 ++++++ .../edb-pgpoolii_4.1_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-pgpoolii_4.1_rhel-7_x86_64.mdx | 51 ++++++ .../edb-pgpoolii_4.1_rhel-8_x86_64.mdx | 53 ++++++ .../edb-pgpoolii_4.1_sles-12_ppc64le.mdx | 58 ++++++ .../edb-pgpoolii_4.1_sles-12_x86_64.mdx | 58 ++++++ .../edb-pgpoolii_4.1_sles-15_ppc64le.mdx | 48 +++++ .../edb-pgpoolii_4.1_sles-15_x86_64.mdx | 48 +++++ .../edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.2_centos-7_ppc64le.mdx | 62 +++++++ .../edb-pgpoolii_4.2_centos-7_x86_64.mdx | 44 +++++ .../edb-pgpoolii_4.2_centos-8_x86_64.mdx | 52 ++++++ .../edb-pgpoolii_4.2_debian-10_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.2_debian-9_x86_64.mdx | 50 ++++++ .../edb-pgpoolii_4.2_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-pgpoolii_4.2_rhel-7_x86_64.mdx | 51 ++++++ .../edb-pgpoolii_4.2_rhel-8_x86_64.mdx | 53 ++++++ .../edb-pgpoolii_4.2_sles-12_ppc64le.mdx | 58 ++++++ .../edb-pgpoolii_4.2_sles-12_x86_64.mdx | 58 ++++++ .../edb-pgpoolii_4.2_sles-15_ppc64le.mdx | 48 +++++ .../edb-pgpoolii_4.2_sles-15_x86_64.mdx | 48 +++++ .../edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.3_centos-7_ppc64le.mdx | 62 +++++++ .../edb-pgpoolii_4.3_centos-7_x86_64.mdx | 44 +++++ .../edb-pgpoolii_4.3_centos-8_x86_64.mdx | 52 ++++++ .../edb-pgpoolii_4.3_debian-10_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.3_debian-9_x86_64.mdx | 50 ++++++ .../edb-pgpoolii_4.3_rhel-7_ppc64le.mdx | 69 ++++++++ .../edb-pgpoolii_4.3_rhel-7_x86_64.mdx | 51 ++++++ .../edb-pgpoolii_4.3_rhel-8_x86_64.mdx | 53 ++++++ .../edb-pgpoolii_4.3_sles-12_ppc64le.mdx | 58 ++++++ .../edb-pgpoolii_4.3_sles-12_x86_64.mdx | 58 ++++++ .../edb-pgpoolii_4.3_sles-15_ppc64le.mdx | 48 +++++ .../edb-pgpoolii_4.3_sles-15_x86_64.mdx | 48 +++++ .../edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4_centos-7_ppc64le.mdx | 62 +++++++ .../edb-pgpoolii_4_centos-7_x86_64.mdx | 44 +++++ .../edb-pgpoolii_4_centos-8_x86_64.mdx | 52 ++++++ .../edb-pgpoolii_4_debian-10_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4_debian-9_x86_64.mdx | 50 ++++++ .../renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/edb-pgpoolii_4_rhel-7_x86_64.mdx | 51 ++++++ .../renders/edb-pgpoolii_4_rhel-8_x86_64.mdx | 53 ++++++ .../edb-pgpoolii_4_sles-12_ppc64le.mdx | 58 ++++++ .../renders/edb-pgpoolii_4_sles-12_x86_64.mdx | 58 ++++++ .../edb-pgpoolii_4_sles-15_ppc64le.mdx | 48 +++++ .../renders/edb-pgpoolii_4_sles-15_x86_64.mdx | 48 +++++ .../edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx | 45 +++++ .../edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx | 45 +++++ ...es-advanced-server_10_centos-7_ppc64le.mdx | 147 ++++++++++++++++ ...res-advanced-server_10_centos-7_x86_64.mdx | 129 ++++++++++++++ ...stgres-advanced-server_10_rhel-7_local.mdx | 166 ++++++++++++++++++ ...gres-advanced-server_10_rhel-7_ppc64le.mdx | 148 ++++++++++++++++ ...tgres-advanced-server_10_rhel-7_x86_64.mdx | 129 ++++++++++++++ ...es-advanced-server_11_centos-7_ppc64le.mdx | 147 ++++++++++++++++ ...res-advanced-server_11_centos-7_x86_64.mdx | 129 ++++++++++++++ ...res-advanced-server_11_centos-8_x86_64.mdx | 137 +++++++++++++++ ...res-advanced-server_11_debian-9_x86_64.mdx | 115 ++++++++++++ ...stgres-advanced-server_11_rhel-7_local.mdx | 166 ++++++++++++++++++ ...gres-advanced-server_11_rhel-7_ppc64le.mdx | 148 ++++++++++++++++ ...tgres-advanced-server_11_rhel-7_x86_64.mdx | 129 ++++++++++++++ ...11_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 ++++++++++++++ ...tgres-advanced-server_11_rhel-8_x86_64.mdx | 130 ++++++++++++++ ...res-advanced-server_11_sles-12_ppc64le.mdx | 133 ++++++++++++++ ...gres-advanced-server_11_sles-12_x86_64.mdx | 133 ++++++++++++++ ...res-advanced-server_11_sles-15_ppc64le.mdx | 123 +++++++++++++ ...gres-advanced-server_11_sles-15_x86_64.mdx | 123 +++++++++++++ ...advanced-server_11_ubuntu-18.04_x86_64.mdx | 110 ++++++++++++ ...es-advanced-server_12_centos-7_ppc64le.mdx | 147 ++++++++++++++++ ...res-advanced-server_12_centos-7_x86_64.mdx | 129 ++++++++++++++ ...res-advanced-server_12_centos-8_x86_64.mdx | 137 +++++++++++++++ ...es-advanced-server_12_debian-10_x86_64.mdx | 110 ++++++++++++ ...res-advanced-server_12_debian-9_x86_64.mdx | 115 ++++++++++++ ...stgres-advanced-server_12_rhel-7_local.mdx | 166 ++++++++++++++++++ ...gres-advanced-server_12_rhel-7_ppc64le.mdx | 148 ++++++++++++++++ ...tgres-advanced-server_12_rhel-7_x86_64.mdx | 129 ++++++++++++++ ...12_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 ++++++++++++++ ...tgres-advanced-server_12_rhel-8_x86_64.mdx | 130 ++++++++++++++ ...res-advanced-server_12_sles-12_ppc64le.mdx | 133 ++++++++++++++ ...gres-advanced-server_12_sles-12_x86_64.mdx | 133 ++++++++++++++ ...res-advanced-server_12_sles-15_ppc64le.mdx | 123 +++++++++++++ ...gres-advanced-server_12_sles-15_x86_64.mdx | 123 +++++++++++++ ...advanced-server_12_ubuntu-18.04_x86_64.mdx | 110 ++++++++++++ ...es-advanced-server_13_centos-7_ppc64le.mdx | 147 ++++++++++++++++ ...res-advanced-server_13_centos-7_x86_64.mdx | 129 ++++++++++++++ ...res-advanced-server_13_centos-8_x86_64.mdx | 137 +++++++++++++++ ...es-advanced-server_13_debian-10_x86_64.mdx | 110 ++++++++++++ ...res-advanced-server_13_debian-9_x86_64.mdx | 115 ++++++++++++ ...stgres-advanced-server_13_rhel-7_local.mdx | 166 ++++++++++++++++++ ...gres-advanced-server_13_rhel-7_ppc64le.mdx | 148 ++++++++++++++++ ...tgres-advanced-server_13_rhel-7_x86_64.mdx | 129 ++++++++++++++ ...13_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 ++++++++++++++ ...tgres-advanced-server_13_rhel-8_x86_64.mdx | 130 ++++++++++++++ ...res-advanced-server_13_sles-12_ppc64le.mdx | 133 ++++++++++++++ ...gres-advanced-server_13_sles-12_x86_64.mdx | 133 ++++++++++++++ ...res-advanced-server_13_sles-15_ppc64le.mdx | 123 +++++++++++++ ...gres-advanced-server_13_sles-15_x86_64.mdx | 123 +++++++++++++ ...advanced-server_13_ubuntu-18.04_x86_64.mdx | 110 ++++++++++++ ...advanced-server_13_ubuntu-20.04_x86_64.mdx | 110 ++++++++++++ ...es-advanced-server_14_centos-7_ppc64le.mdx | 147 ++++++++++++++++ ...res-advanced-server_14_centos-7_x86_64.mdx | 129 ++++++++++++++ ...res-advanced-server_14_centos-8_x86_64.mdx | 137 +++++++++++++++ ...es-advanced-server_14_debian-10_x86_64.mdx | 110 ++++++++++++ ...res-advanced-server_14_debian-9_x86_64.mdx | 115 ++++++++++++ ...stgres-advanced-server_14_rhel-7_local.mdx | 166 ++++++++++++++++++ ...gres-advanced-server_14_rhel-7_ppc64le.mdx | 148 ++++++++++++++++ ...tgres-advanced-server_14_rhel-7_x86_64.mdx | 129 ++++++++++++++ ...14_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 ++++++++++++++ ...tgres-advanced-server_14_rhel-8_x86_64.mdx | 130 ++++++++++++++ ...res-advanced-server_14_sles-12_ppc64le.mdx | 133 ++++++++++++++ ...gres-advanced-server_14_sles-12_x86_64.mdx | 133 ++++++++++++++ ...res-advanced-server_14_sles-15_ppc64le.mdx | 123 +++++++++++++ ...gres-advanced-server_14_sles-15_x86_64.mdx | 123 +++++++++++++ ...advanced-server_14_ubuntu-18.04_x86_64.mdx | 110 ++++++++++++ ...advanced-server_14_ubuntu-20.04_x86_64.mdx | 110 ++++++++++++ ...s-advanced-server_9.6_centos-7_ppc64le.mdx | 147 ++++++++++++++++ ...es-advanced-server_9.6_centos-7_x86_64.mdx | 129 ++++++++++++++ ...tgres-advanced-server_9.6_rhel-7_local.mdx | 166 ++++++++++++++++++ ...res-advanced-server_9.6_rhel-7_ppc64le.mdx | 148 ++++++++++++++++ ...gres-advanced-server_9.6_rhel-7_x86_64.mdx | 129 ++++++++++++++ ...es-advanced-server_9.6_sles-12_ppc64le.mdx | 133 ++++++++++++++ ...res-advanced-server_9.6_sles-12_x86_64.mdx | 133 ++++++++++++++ ...es-advanced-server_9.6_sles-15_ppc64le.mdx | 123 +++++++++++++ ...res-advanced-server_9.6_sles-15_x86_64.mdx | 123 +++++++++++++ .../failover-manager_3.1_centos-7_ppc64le.mdx | 62 +++++++ .../failover-manager_3.1_centos-7_x86_64.mdx | 44 +++++ .../failover-manager_3.1_centos-8_x86_64.mdx | 52 ++++++ .../failover-manager_3.1_debian-10_x86_64.mdx | 45 +++++ .../failover-manager_3.1_debian-9_x86_64.mdx | 50 ++++++ .../failover-manager_3.1_rhel-7_ppc64le.mdx | 69 ++++++++ .../failover-manager_3.1_rhel-7_x86_64.mdx | 51 ++++++ .../failover-manager_3.1_rhel-8_x86_64.mdx | 53 ++++++ .../failover-manager_3.1_sles-12_ppc64le.mdx | 58 ++++++ .../failover-manager_3.1_sles-12_x86_64.mdx | 58 ++++++ .../failover-manager_3.1_sles-15_ppc64le.mdx | 48 +++++ .../failover-manager_3.1_sles-15_x86_64.mdx | 48 +++++ ...ilover-manager_3.1_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ilover-manager_3.1_ubuntu-20.04_x86_64.mdx | 45 +++++ .../failover-manager_4.1_centos-7_ppc64le.mdx | 62 +++++++ .../failover-manager_4.1_centos-7_x86_64.mdx | 44 +++++ .../failover-manager_4.1_centos-8_x86_64.mdx | 52 ++++++ .../failover-manager_4.1_debian-10_x86_64.mdx | 45 +++++ .../failover-manager_4.1_debian-9_x86_64.mdx | 50 ++++++ .../failover-manager_4.1_rhel-7_ppc64le.mdx | 69 ++++++++ .../failover-manager_4.1_rhel-7_x86_64.mdx | 51 ++++++ .../failover-manager_4.1_rhel-8_x86_64.mdx | 53 ++++++ .../failover-manager_4.1_sles-12_ppc64le.mdx | 58 ++++++ .../failover-manager_4.1_sles-12_x86_64.mdx | 58 ++++++ .../failover-manager_4.1_sles-15_ppc64le.mdx | 48 +++++ .../failover-manager_4.1_sles-15_x86_64.mdx | 48 +++++ ...ilover-manager_4.1_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ilover-manager_4.1_ubuntu-20.04_x86_64.mdx | 45 +++++ .../failover-manager_4.2_centos-7_ppc64le.mdx | 62 +++++++ .../failover-manager_4.2_centos-7_x86_64.mdx | 44 +++++ .../failover-manager_4.2_centos-8_x86_64.mdx | 52 ++++++ .../failover-manager_4.2_debian-10_x86_64.mdx | 45 +++++ .../failover-manager_4.2_debian-9_x86_64.mdx | 50 ++++++ .../failover-manager_4.2_rhel-7_ppc64le.mdx | 69 ++++++++ .../failover-manager_4.2_rhel-7_x86_64.mdx | 51 ++++++ .../failover-manager_4.2_rhel-8_x86_64.mdx | 53 ++++++ .../failover-manager_4.2_sles-12_ppc64le.mdx | 58 ++++++ .../failover-manager_4.2_sles-12_x86_64.mdx | 58 ++++++ .../failover-manager_4.2_sles-15_ppc64le.mdx | 48 +++++ .../failover-manager_4.2_sles-15_x86_64.mdx | 48 +++++ ...ilover-manager_4.2_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ilover-manager_4.2_ubuntu-20.04_x86_64.mdx | 45 +++++ .../failover-manager_4.3_centos-7_ppc64le.mdx | 62 +++++++ .../failover-manager_4.3_centos-7_x86_64.mdx | 44 +++++ .../failover-manager_4.3_centos-8_x86_64.mdx | 52 ++++++ .../failover-manager_4.3_debian-10_x86_64.mdx | 45 +++++ .../failover-manager_4.3_debian-9_x86_64.mdx | 50 ++++++ .../failover-manager_4.3_rhel-7_ppc64le.mdx | 69 ++++++++ .../failover-manager_4.3_rhel-7_x86_64.mdx | 51 ++++++ .../failover-manager_4.3_rhel-8_x86_64.mdx | 53 ++++++ .../failover-manager_4.3_sles-12_ppc64le.mdx | 58 ++++++ .../failover-manager_4.3_sles-12_x86_64.mdx | 58 ++++++ .../failover-manager_4.3_sles-15_ppc64le.mdx | 48 +++++ .../failover-manager_4.3_sles-15_x86_64.mdx | 48 +++++ ...ilover-manager_4.3_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ilover-manager_4.3_ubuntu-20.04_x86_64.mdx | 45 +++++ .../failover-manager_4.4_centos-7_ppc64le.mdx | 62 +++++++ .../failover-manager_4.4_centos-7_x86_64.mdx | 44 +++++ .../failover-manager_4.4_centos-8_x86_64.mdx | 52 ++++++ .../failover-manager_4.4_debian-10_x86_64.mdx | 45 +++++ .../failover-manager_4.4_debian-9_x86_64.mdx | 50 ++++++ .../failover-manager_4.4_rhel-7_ppc64le.mdx | 69 ++++++++ .../failover-manager_4.4_rhel-7_x86_64.mdx | 51 ++++++ .../failover-manager_4.4_rhel-8_x86_64.mdx | 53 ++++++ .../failover-manager_4.4_sles-12_ppc64le.mdx | 58 ++++++ .../failover-manager_4.4_sles-12_x86_64.mdx | 58 ++++++ .../failover-manager_4.4_sles-15_ppc64le.mdx | 48 +++++ .../failover-manager_4.4_sles-15_x86_64.mdx | 48 +++++ ...ilover-manager_4.4_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ilover-manager_4.4_ubuntu-20.04_x86_64.mdx | 45 +++++ .../failover-manager_4_centos-7_ppc64le.mdx | 62 +++++++ .../failover-manager_4_centos-7_x86_64.mdx | 44 +++++ .../failover-manager_4_centos-8_x86_64.mdx | 52 ++++++ .../failover-manager_4_debian-10_x86_64.mdx | 45 +++++ .../failover-manager_4_debian-9_x86_64.mdx | 50 ++++++ .../failover-manager_4_rhel-7_ppc64le.mdx | 69 ++++++++ .../failover-manager_4_rhel-7_x86_64.mdx | 51 ++++++ .../failover-manager_4_rhel-8_x86_64.mdx | 53 ++++++ .../failover-manager_4_sles-12_ppc64le.mdx | 58 ++++++ .../failover-manager_4_sles-12_x86_64.mdx | 58 ++++++ .../failover-manager_4_sles-15_ppc64le.mdx | 48 +++++ .../failover-manager_4_sles-15_x86_64.mdx | 48 +++++ ...failover-manager_4_ubuntu-18.04_x86_64.mdx | 45 +++++ ...failover-manager_4_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_11_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_11_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_11_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_11_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_11_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_11_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_11_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_11_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_11_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_11_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_11_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_11_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_11_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_11_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_12_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_12_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_12_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_12_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_12_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_12_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_12_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_12_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_12_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_12_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_12_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_12_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_12_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_12_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_13_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_13_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_13_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_13_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_13_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_13_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_13_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_13_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_13_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_13_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_13_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_13_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_13_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_13_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_14_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_14_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_14_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_14_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_14_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_14_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_14_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_14_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_14_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_14_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_11_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_11_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_11_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_11_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_11_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_11_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_11_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_11_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_11_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_11_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_11_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_11_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_11_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_11_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_12_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_12_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_12_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_12_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_12_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_12_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_12_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_12_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_12_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_12_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_12_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_12_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_12_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_12_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_13_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_13_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_13_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_13_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_13_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_13_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_13_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_13_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_13_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_13_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_13_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_13_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_13_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_13_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_14_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_14_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_14_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_14_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_14_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_14_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_14_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_14_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_14_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_14_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_11_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_11_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_11_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_11_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_11_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_11_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_11_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_11_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_11_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_11_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_11_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_11_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_11_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_11_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_12_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_12_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_12_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_12_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_12_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_12_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_12_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_12_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_12_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_12_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_12_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_12_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_12_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_12_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_13_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_13_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_13_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_13_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_13_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_13_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_13_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_13_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_13_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_13_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_13_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_13_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_13_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_13_ubuntu-20.04_x86_64.mdx | 45 +++++ ...reign-data-wrapper_14_centos-7_ppc64le.mdx | 62 +++++++ ...oreign-data-wrapper_14_centos-7_x86_64.mdx | 44 +++++ ...oreign-data-wrapper_14_centos-8_x86_64.mdx | 52 ++++++ ...reign-data-wrapper_14_debian-10_x86_64.mdx | 45 +++++ ...oreign-data-wrapper_14_debian-9_x86_64.mdx | 50 ++++++ ...foreign-data-wrapper_14_rhel-7_ppc64le.mdx | 69 ++++++++ ...-foreign-data-wrapper_14_rhel-7_x86_64.mdx | 51 ++++++ ...-foreign-data-wrapper_14_rhel-8_x86_64.mdx | 53 ++++++ ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 58 ++++++ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 58 ++++++ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 +++++ ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 +++++ ...gn-data-wrapper_14_ubuntu-18.04_x86_64.mdx | 45 +++++ ...gn-data-wrapper_14_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/postgis_11_centos-7_ppc64le.mdx | 62 +++++++ .../renders/postgis_11_centos-7_x86_64.mdx | 44 +++++ .../renders/postgis_11_centos-8_x86_64.mdx | 52 ++++++ .../renders/postgis_11_debian-10_x86_64.mdx | 45 +++++ .../renders/postgis_11_debian-9_x86_64.mdx | 50 ++++++ .../renders/postgis_11_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/postgis_11_rhel-7_x86_64.mdx | 51 ++++++ .../renders/postgis_11_rhel-8_x86_64.mdx | 53 ++++++ .../renders/postgis_11_sles-12_ppc64le.mdx | 58 ++++++ .../renders/postgis_11_sles-12_x86_64.mdx | 58 ++++++ .../renders/postgis_11_sles-15_ppc64le.mdx | 48 +++++ .../renders/postgis_11_sles-15_x86_64.mdx | 48 +++++ .../postgis_11_ubuntu-18.04_x86_64.mdx | 45 +++++ .../postgis_11_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/postgis_12_centos-7_ppc64le.mdx | 62 +++++++ .../renders/postgis_12_centos-7_x86_64.mdx | 44 +++++ .../renders/postgis_12_centos-8_x86_64.mdx | 52 ++++++ .../renders/postgis_12_debian-10_x86_64.mdx | 45 +++++ .../renders/postgis_12_debian-9_x86_64.mdx | 50 ++++++ .../renders/postgis_12_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/postgis_12_rhel-7_x86_64.mdx | 51 ++++++ .../renders/postgis_12_rhel-8_x86_64.mdx | 53 ++++++ .../renders/postgis_12_sles-12_ppc64le.mdx | 58 ++++++ .../renders/postgis_12_sles-12_x86_64.mdx | 58 ++++++ .../renders/postgis_12_sles-15_ppc64le.mdx | 48 +++++ .../renders/postgis_12_sles-15_x86_64.mdx | 48 +++++ .../postgis_12_ubuntu-18.04_x86_64.mdx | 45 +++++ .../postgis_12_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/postgis_13_centos-7_ppc64le.mdx | 62 +++++++ .../renders/postgis_13_centos-7_x86_64.mdx | 44 +++++ .../renders/postgis_13_centos-8_x86_64.mdx | 52 ++++++ .../renders/postgis_13_debian-10_x86_64.mdx | 45 +++++ .../renders/postgis_13_debian-9_x86_64.mdx | 50 ++++++ .../renders/postgis_13_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/postgis_13_rhel-7_x86_64.mdx | 51 ++++++ .../renders/postgis_13_rhel-8_x86_64.mdx | 53 ++++++ .../renders/postgis_13_sles-12_ppc64le.mdx | 58 ++++++ .../renders/postgis_13_sles-12_x86_64.mdx | 58 ++++++ .../renders/postgis_13_sles-15_ppc64le.mdx | 48 +++++ .../renders/postgis_13_sles-15_x86_64.mdx | 48 +++++ .../postgis_13_ubuntu-18.04_x86_64.mdx | 45 +++++ .../postgis_13_ubuntu-20.04_x86_64.mdx | 45 +++++ .../renders/postgis_14_centos-7_ppc64le.mdx | 62 +++++++ .../renders/postgis_14_centos-7_x86_64.mdx | 44 +++++ .../renders/postgis_14_centos-8_x86_64.mdx | 52 ++++++ .../renders/postgis_14_debian-10_x86_64.mdx | 45 +++++ .../renders/postgis_14_debian-9_x86_64.mdx | 50 ++++++ .../renders/postgis_14_rhel-7_ppc64le.mdx | 69 ++++++++ .../renders/postgis_14_rhel-7_x86_64.mdx | 51 ++++++ .../renders/postgis_14_rhel-8_x86_64.mdx | 53 ++++++ .../renders/postgis_14_sles-12_ppc64le.mdx | 58 ++++++ .../renders/postgis_14_sles-12_x86_64.mdx | 58 ++++++ .../renders/postgis_14_sles-15_ppc64le.mdx | 48 +++++ .../renders/postgis_14_sles-15_x86_64.mdx | 48 +++++ .../postgis_14_ubuntu-18.04_x86_64.mdx | 45 +++++ .../postgis_14_ubuntu-20.04_x86_64.mdx | 45 +++++ ...-enterprise-manager_7_centos-7_ppc64le.mdx | 76 ++++++++ ...s-enterprise-manager_7_centos-7_x86_64.mdx | 58 ++++++ ...s-enterprise-manager_7_centos-8_x86_64.mdx | 66 +++++++ ...-enterprise-manager_7_debian-10_x86_64.mdx | 59 +++++++ ...s-enterprise-manager_7_debian-9_x86_64.mdx | 61 +++++++ ...es-enterprise-manager_7_rhel-7_ppc64le.mdx | 80 +++++++++ ...res-enterprise-manager_7_rhel-7_x86_64.mdx | 62 +++++++ ...res-enterprise-manager_7_rhel-8_x86_64.mdx | 67 +++++++ ...s-enterprise-manager_7_sles-12_ppc64le.mdx | 72 ++++++++ ...es-enterprise-manager_7_sles-12_x86_64.mdx | 72 ++++++++ ...s-enterprise-manager_7_sles-15_ppc64le.mdx | 62 +++++++ ...es-enterprise-manager_7_sles-15_x86_64.mdx | 62 +++++++ ...terprise-manager_7_ubuntu-18.04_x86_64.mdx | 59 +++++++ ...terprise-manager_7_ubuntu-20.04_x86_64.mdx | 59 +++++++ ...-enterprise-manager_8_centos-7_ppc64le.mdx | 76 ++++++++ ...s-enterprise-manager_8_centos-7_x86_64.mdx | 58 ++++++ ...s-enterprise-manager_8_centos-8_x86_64.mdx | 66 +++++++ ...-enterprise-manager_8_debian-10_x86_64.mdx | 59 +++++++ ...s-enterprise-manager_8_debian-9_x86_64.mdx | 61 +++++++ ...es-enterprise-manager_8_rhel-7_ppc64le.mdx | 80 +++++++++ ...res-enterprise-manager_8_rhel-7_x86_64.mdx | 62 +++++++ ...res-enterprise-manager_8_rhel-8_x86_64.mdx | 67 +++++++ ...s-enterprise-manager_8_sles-12_ppc64le.mdx | 72 ++++++++ ...es-enterprise-manager_8_sles-12_x86_64.mdx | 72 ++++++++ ...s-enterprise-manager_8_sles-15_ppc64le.mdx | 62 +++++++ ...es-enterprise-manager_8_sles-15_x86_64.mdx | 62 +++++++ ...terprise-manager_8_ubuntu-18.04_x86_64.mdx | 59 +++++++ ...terprise-manager_8_ubuntu-20.04_x86_64.mdx | 59 +++++++ ...replication-manager_7_centos-7_ppc64le.mdx | 62 +++++++ .../replication-manager_7_centos-7_x86_64.mdx | 44 +++++ .../replication-manager_7_centos-8_x86_64.mdx | 52 ++++++ ...replication-manager_7_debian-10_x86_64.mdx | 45 +++++ .../replication-manager_7_debian-9_x86_64.mdx | 50 ++++++ .../replication-manager_7_rhel-7_ppc64le.mdx | 69 ++++++++ .../replication-manager_7_rhel-7_x86_64.mdx | 51 ++++++ .../replication-manager_7_rhel-8_x86_64.mdx | 53 ++++++ .../replication-manager_7_sles-12_ppc64le.mdx | 58 ++++++ .../replication-manager_7_sles-12_x86_64.mdx | 58 ++++++ .../replication-manager_7_sles-15_ppc64le.mdx | 48 +++++ .../replication-manager_7_sles-15_x86_64.mdx | 48 +++++ ...lication-manager_7_ubuntu-18.04_x86_64.mdx | 45 +++++ ...lication-manager_7_ubuntu-20.04_x86_64.mdx | 45 +++++ .../slony-replication_11_centos-7_ppc64le.mdx | 62 +++++++ .../slony-replication_11_centos-7_x86_64.mdx | 44 +++++ .../slony-replication_11_centos-8_x86_64.mdx | 52 ++++++ .../slony-replication_11_debian-10_x86_64.mdx | 45 +++++ .../slony-replication_11_debian-9_x86_64.mdx | 50 ++++++ .../slony-replication_11_rhel-7_ppc64le.mdx | 69 ++++++++ .../slony-replication_11_rhel-7_x86_64.mdx | 51 ++++++ .../slony-replication_11_rhel-8_x86_64.mdx | 53 ++++++ .../slony-replication_11_sles-12_ppc64le.mdx | 58 ++++++ .../slony-replication_11_sles-12_x86_64.mdx | 58 ++++++ .../slony-replication_11_sles-15_ppc64le.mdx | 48 +++++ .../slony-replication_11_sles-15_x86_64.mdx | 48 +++++ ...ony-replication_11_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ony-replication_11_ubuntu-20.04_x86_64.mdx | 45 +++++ .../slony-replication_12_centos-7_ppc64le.mdx | 62 +++++++ .../slony-replication_12_centos-7_x86_64.mdx | 44 +++++ .../slony-replication_12_centos-8_x86_64.mdx | 52 ++++++ .../slony-replication_12_debian-10_x86_64.mdx | 45 +++++ .../slony-replication_12_debian-9_x86_64.mdx | 50 ++++++ .../slony-replication_12_rhel-7_ppc64le.mdx | 69 ++++++++ .../slony-replication_12_rhel-7_x86_64.mdx | 51 ++++++ .../slony-replication_12_rhel-8_x86_64.mdx | 53 ++++++ .../slony-replication_12_sles-12_ppc64le.mdx | 58 ++++++ .../slony-replication_12_sles-12_x86_64.mdx | 58 ++++++ .../slony-replication_12_sles-15_ppc64le.mdx | 48 +++++ .../slony-replication_12_sles-15_x86_64.mdx | 48 +++++ ...ony-replication_12_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ony-replication_12_ubuntu-20.04_x86_64.mdx | 45 +++++ .../slony-replication_13_centos-7_ppc64le.mdx | 62 +++++++ .../slony-replication_13_centos-7_x86_64.mdx | 44 +++++ .../slony-replication_13_centos-8_x86_64.mdx | 52 ++++++ .../slony-replication_13_debian-10_x86_64.mdx | 45 +++++ .../slony-replication_13_debian-9_x86_64.mdx | 50 ++++++ .../slony-replication_13_rhel-7_ppc64le.mdx | 69 ++++++++ .../slony-replication_13_rhel-7_x86_64.mdx | 51 ++++++ .../slony-replication_13_rhel-8_x86_64.mdx | 53 ++++++ .../slony-replication_13_sles-12_ppc64le.mdx | 58 ++++++ .../slony-replication_13_sles-12_x86_64.mdx | 58 ++++++ .../slony-replication_13_sles-15_ppc64le.mdx | 48 +++++ .../slony-replication_13_sles-15_x86_64.mdx | 48 +++++ ...ony-replication_13_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ony-replication_13_ubuntu-20.04_x86_64.mdx | 45 +++++ .../slony-replication_14_centos-7_ppc64le.mdx | 62 +++++++ .../slony-replication_14_centos-7_x86_64.mdx | 44 +++++ .../slony-replication_14_centos-8_x86_64.mdx | 52 ++++++ .../slony-replication_14_debian-10_x86_64.mdx | 45 +++++ .../slony-replication_14_debian-9_x86_64.mdx | 50 ++++++ .../slony-replication_14_rhel-7_ppc64le.mdx | 69 ++++++++ .../slony-replication_14_rhel-7_x86_64.mdx | 51 ++++++ .../slony-replication_14_rhel-8_x86_64.mdx | 53 ++++++ .../slony-replication_14_sles-12_ppc64le.mdx | 58 ++++++ .../slony-replication_14_sles-12_x86_64.mdx | 58 ++++++ .../slony-replication_14_sles-15_ppc64le.mdx | 48 +++++ .../slony-replication_14_sles-15_x86_64.mdx | 48 +++++ ...ony-replication_14_ubuntu-18.04_x86_64.mdx | 45 +++++ ...ony-replication_14_ubuntu-20.04_x86_64.mdx | 45 +++++ 733 files changed, 44502 insertions(+) create mode 100644 install_template/renders/edb*plus_11_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_11_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_11_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_11_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_11_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_12_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_12_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_12_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_12_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_13_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_13_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_13_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_13_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_14_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_14_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_centos-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4_centos-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_centos-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_debian-10_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_debian-9_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4_rhel-7_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_rhel-8_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4_sles-15_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/postgis_11_centos-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_11_centos-7_x86_64.mdx create mode 100644 install_template/renders/postgis_11_centos-8_x86_64.mdx create mode 100644 install_template/renders/postgis_11_debian-10_x86_64.mdx create mode 100644 install_template/renders/postgis_11_debian-9_x86_64.mdx create mode 100644 install_template/renders/postgis_11_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_11_rhel-7_x86_64.mdx create mode 100644 install_template/renders/postgis_11_rhel-8_x86_64.mdx create mode 100644 install_template/renders/postgis_11_sles-12_ppc64le.mdx create mode 100644 install_template/renders/postgis_11_sles-12_x86_64.mdx create mode 100644 install_template/renders/postgis_11_sles-15_ppc64le.mdx create mode 100644 install_template/renders/postgis_11_sles-15_x86_64.mdx create mode 100644 install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/postgis_12_centos-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_12_centos-7_x86_64.mdx create mode 100644 install_template/renders/postgis_12_centos-8_x86_64.mdx create mode 100644 install_template/renders/postgis_12_debian-10_x86_64.mdx create mode 100644 install_template/renders/postgis_12_debian-9_x86_64.mdx create mode 100644 install_template/renders/postgis_12_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_12_rhel-7_x86_64.mdx create mode 100644 install_template/renders/postgis_12_rhel-8_x86_64.mdx create mode 100644 install_template/renders/postgis_12_sles-12_ppc64le.mdx create mode 100644 install_template/renders/postgis_12_sles-12_x86_64.mdx create mode 100644 install_template/renders/postgis_12_sles-15_ppc64le.mdx create mode 100644 install_template/renders/postgis_12_sles-15_x86_64.mdx create mode 100644 install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/postgis_13_centos-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_13_centos-7_x86_64.mdx create mode 100644 install_template/renders/postgis_13_centos-8_x86_64.mdx create mode 100644 install_template/renders/postgis_13_debian-10_x86_64.mdx create mode 100644 install_template/renders/postgis_13_debian-9_x86_64.mdx create mode 100644 install_template/renders/postgis_13_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_13_rhel-7_x86_64.mdx create mode 100644 install_template/renders/postgis_13_rhel-8_x86_64.mdx create mode 100644 install_template/renders/postgis_13_sles-12_ppc64le.mdx create mode 100644 install_template/renders/postgis_13_sles-12_x86_64.mdx create mode 100644 install_template/renders/postgis_13_sles-15_ppc64le.mdx create mode 100644 install_template/renders/postgis_13_sles-15_x86_64.mdx create mode 100644 install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/postgis_14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_14_centos-7_x86_64.mdx create mode 100644 install_template/renders/postgis_14_centos-8_x86_64.mdx create mode 100644 install_template/renders/postgis_14_debian-10_x86_64.mdx create mode 100644 install_template/renders/postgis_14_debian-9_x86_64.mdx create mode 100644 install_template/renders/postgis_14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/postgis_14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/postgis_14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/postgis_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/postgis_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/postgis_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/postgis_14_sles-15_x86_64.mdx create mode 100644 install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_centos-7_ppc64le.mdx create mode 100644 install_template/renders/replication-manager_7_centos-7_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_centos-8_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_debian-10_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_debian-9_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/replication-manager_7_rhel-7_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_rhel-8_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_sles-12_ppc64le.mdx create mode 100644 install_template/renders/replication-manager_7_sles-12_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_sles-15_ppc64le.mdx create mode 100644 install_template/renders/replication-manager_7_sles-15_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_centos-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_11_centos-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_centos-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_debian-10_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_debian-9_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_11_rhel-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_rhel-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_sles-12_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_11_sles-12_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_sles-15_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_11_sles-15_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_centos-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_12_centos-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_centos-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_debian-10_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_debian-9_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_12_rhel-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_rhel-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_sles-12_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_12_sles-12_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_sles-15_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_12_sles-15_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_centos-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_13_centos-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_centos-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_debian-10_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_debian-9_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_13_rhel-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_rhel-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_sles-12_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_13_sles-12_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_sles-15_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_13_sles-15_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_centos-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_14_centos-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_centos-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_debian-10_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_debian-9_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_14_rhel-7_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_rhel-8_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/slony-replication_14_sles-15_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx create mode 100644 install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx diff --git a/install_template/renders/edb*plus_11_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_11_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..564111604ea --- /dev/null +++ b/install_template/renders/edb*plus_11_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB\*Plus 11 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_centos-7_x86_64.mdx b/install_template/renders/edb*plus_11_centos-7_x86_64.mdx new file mode 100644 index 00000000000..f6144804a23 --- /dev/null +++ b/install_template/renders/edb*plus_11_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB\*Plus 11 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_centos-8_x86_64.mdx b/install_template/renders/edb*plus_11_centos-8_x86_64.mdx new file mode 100644 index 00000000000..ad330e5c790 --- /dev/null +++ b/install_template/renders/edb*plus_11_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB\*Plus 11 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_debian-10_x86_64.mdx b/install_template/renders/edb*plus_11_debian-10_x86_64.mdx new file mode 100644 index 00000000000..6fec707b5f0 --- /dev/null +++ b/install_template/renders/edb*plus_11_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 11 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_debian-9_x86_64.mdx b/install_template/renders/edb*plus_11_debian-9_x86_64.mdx new file mode 100644 index 00000000000..fc0d5f27a75 --- /dev/null +++ b/install_template/renders/edb*plus_11_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB\*Plus 11 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as11-edbplus +```` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..7b2921186ee --- /dev/null +++ b/install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB\*Plus 11 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_11_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..1f336d0127e --- /dev/null +++ b/install_template/renders/edb*plus_11_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB\*Plus 11 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_11_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..8812550d34f --- /dev/null +++ b/install_template/renders/edb*plus_11_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB\*Plus 11 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..a91d3ccc6a7 --- /dev/null +++ b/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 11 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-12_x86_64.mdx b/install_template/renders/edb*plus_11_sles-12_x86_64.mdx new file mode 100644 index 00000000000..6cec0d6b581 --- /dev/null +++ b/install_template/renders/edb*plus_11_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 11 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..41408c2aeae --- /dev/null +++ b/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 11 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-15_x86_64.mdx b/install_template/renders/edb*plus_11_sles-15_x86_64.mdx new file mode 100644 index 00000000000..1eeb989875f --- /dev/null +++ b/install_template/renders/edb*plus_11_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 11 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..2668eeb5df8 --- /dev/null +++ b/install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 11 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..aca9228de64 --- /dev/null +++ b/install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 11 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_12_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..efe74dc00e6 --- /dev/null +++ b/install_template/renders/edb*plus_12_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB\*Plus 12 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_centos-7_x86_64.mdx b/install_template/renders/edb*plus_12_centos-7_x86_64.mdx new file mode 100644 index 00000000000..51a2a37eb46 --- /dev/null +++ b/install_template/renders/edb*plus_12_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB\*Plus 12 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_centos-8_x86_64.mdx b/install_template/renders/edb*plus_12_centos-8_x86_64.mdx new file mode 100644 index 00000000000..56328173c9e --- /dev/null +++ b/install_template/renders/edb*plus_12_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB\*Plus 12 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_debian-10_x86_64.mdx b/install_template/renders/edb*plus_12_debian-10_x86_64.mdx new file mode 100644 index 00000000000..0d067b9a36d --- /dev/null +++ b/install_template/renders/edb*plus_12_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 12 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_debian-9_x86_64.mdx b/install_template/renders/edb*plus_12_debian-9_x86_64.mdx new file mode 100644 index 00000000000..dd27dd19294 --- /dev/null +++ b/install_template/renders/edb*plus_12_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB\*Plus 12 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as12-edbplus +```` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..f50b5245b73 --- /dev/null +++ b/install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB\*Plus 12 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_12_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..b9c4d90cc90 --- /dev/null +++ b/install_template/renders/edb*plus_12_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB\*Plus 12 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_12_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..bb9b28b1620 --- /dev/null +++ b/install_template/renders/edb*plus_12_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB\*Plus 12 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..6920b011008 --- /dev/null +++ b/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 12 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-12_x86_64.mdx b/install_template/renders/edb*plus_12_sles-12_x86_64.mdx new file mode 100644 index 00000000000..971ac22109a --- /dev/null +++ b/install_template/renders/edb*plus_12_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 12 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..8d9f547481c --- /dev/null +++ b/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 12 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-15_x86_64.mdx b/install_template/renders/edb*plus_12_sles-15_x86_64.mdx new file mode 100644 index 00000000000..458107dc1be --- /dev/null +++ b/install_template/renders/edb*plus_12_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 12 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..1d1a6ede878 --- /dev/null +++ b/install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 12 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..3a0cb049f93 --- /dev/null +++ b/install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 12 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_13_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..97784c22421 --- /dev/null +++ b/install_template/renders/edb*plus_13_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB\*Plus 13 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_centos-7_x86_64.mdx b/install_template/renders/edb*plus_13_centos-7_x86_64.mdx new file mode 100644 index 00000000000..232c6cb701f --- /dev/null +++ b/install_template/renders/edb*plus_13_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB\*Plus 13 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_centos-8_x86_64.mdx b/install_template/renders/edb*plus_13_centos-8_x86_64.mdx new file mode 100644 index 00000000000..929a3c6b157 --- /dev/null +++ b/install_template/renders/edb*plus_13_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB\*Plus 13 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_debian-10_x86_64.mdx b/install_template/renders/edb*plus_13_debian-10_x86_64.mdx new file mode 100644 index 00000000000..34ee0cb6de7 --- /dev/null +++ b/install_template/renders/edb*plus_13_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 13 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_debian-9_x86_64.mdx b/install_template/renders/edb*plus_13_debian-9_x86_64.mdx new file mode 100644 index 00000000000..fef126b4dc1 --- /dev/null +++ b/install_template/renders/edb*plus_13_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB\*Plus 13 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as13-edbplus +```` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..5c0e217281b --- /dev/null +++ b/install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB\*Plus 13 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_13_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..64e31773a12 --- /dev/null +++ b/install_template/renders/edb*plus_13_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB\*Plus 13 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_13_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..1b375a408c4 --- /dev/null +++ b/install_template/renders/edb*plus_13_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB\*Plus 13 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..4ba1090cf70 --- /dev/null +++ b/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 13 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-12_x86_64.mdx b/install_template/renders/edb*plus_13_sles-12_x86_64.mdx new file mode 100644 index 00000000000..c0271f2c3af --- /dev/null +++ b/install_template/renders/edb*plus_13_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 13 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..73502e0928a --- /dev/null +++ b/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 13 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-15_x86_64.mdx b/install_template/renders/edb*plus_13_sles-15_x86_64.mdx new file mode 100644 index 00000000000..5a68a2724f9 --- /dev/null +++ b/install_template/renders/edb*plus_13_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 13 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..38476edb457 --- /dev/null +++ b/install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 13 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..e5675beaa33 --- /dev/null +++ b/install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 13 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..1aff57bbbff --- /dev/null +++ b/install_template/renders/edb*plus_14_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB\*Plus 14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_centos-7_x86_64.mdx b/install_template/renders/edb*plus_14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..492166d5b6a --- /dev/null +++ b/install_template/renders/edb*plus_14_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB\*Plus 14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_centos-8_x86_64.mdx b/install_template/renders/edb*plus_14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..6eee27a8664 --- /dev/null +++ b/install_template/renders/edb*plus_14_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB\*Plus 14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_debian-10_x86_64.mdx b/install_template/renders/edb*plus_14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..686425f7ee4 --- /dev/null +++ b/install_template/renders/edb*plus_14_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_debian-9_x86_64.mdx b/install_template/renders/edb*plus_14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..d790bba4491 --- /dev/null +++ b/install_template/renders/edb*plus_14_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB\*Plus 14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as14-edbplus +```` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..cfa45bbddc3 --- /dev/null +++ b/install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB\*Plus 14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..926ab95a7ae --- /dev/null +++ b/install_template/renders/edb*plus_14_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB\*Plus 14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..2f0c8c8ae9d --- /dev/null +++ b/install_template/renders/edb*plus_14_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB\*Plus 14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..5b2409b2d2f --- /dev/null +++ b/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-12_x86_64.mdx b/install_template/renders/edb*plus_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ea320322f60 --- /dev/null +++ b/install_template/renders/edb*plus_14_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..f2e18d37438 --- /dev/null +++ b/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-15_x86_64.mdx b/install_template/renders/edb*plus_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..fbff3c41a33 --- /dev/null +++ b/install_template/renders/edb*plus_14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..ce5e32cc089 --- /dev/null +++ b/install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..74863a360ce --- /dev/null +++ b/install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..2b1cf4227dd --- /dev/null +++ b/install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB\*Plus 9.6 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as96-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx b/install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx new file mode 100644 index 00000000000..2e091845342 --- /dev/null +++ b/install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB\*Plus 9.6 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as96-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx b/install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx new file mode 100644 index 00000000000..8dd65771ee5 --- /dev/null +++ b/install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB\*Plus 9.6 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx b/install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx new file mode 100644 index 00000000000..02333efd75d --- /dev/null +++ b/install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 9.6 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx b/install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx new file mode 100644 index 00000000000..dc6811ff5a9 --- /dev/null +++ b/install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB\*Plus 9.6 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as96-edbplus +```` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..55638d2611d --- /dev/null +++ b/install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB\*Plus 9.6 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as96-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..5567080b004 --- /dev/null +++ b/install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB\*Plus 9.6 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as96-edbplus +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..8f0987b5e6a --- /dev/null +++ b/install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB\*Plus 9.6 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as96-edbplus +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..171a054a46a --- /dev/null +++ b/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 9.6 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx b/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx new file mode 100644 index 00000000000..113cca054cd --- /dev/null +++ b/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB\*Plus 9.6 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..1be2d6e5d19 --- /dev/null +++ b/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 9.6 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx b/install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx new file mode 100644 index 00000000000..9273f1c3299 --- /dev/null +++ b/install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB\*Plus 9.6 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..007212a2add --- /dev/null +++ b/install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 9.6 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..f342ff47443 --- /dev/null +++ b/install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB\*Plus 9.6 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as96-edbplus +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx b/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..b35401d3ee6 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB BART 2.6 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-bart +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx b/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx new file mode 100644 index 00000000000..8b8d0cd986b --- /dev/null +++ b/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB BART 2.6 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-bart +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx b/install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx new file mode 100644 index 00000000000..9c07b2ce70c --- /dev/null +++ b/install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB BART 2.6 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx b/install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx new file mode 100644 index 00000000000..c3c9fce5b14 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB BART 2.6 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx b/install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx new file mode 100644 index 00000000000..f58f1d4f164 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB BART 2.6 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-bart +```` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx b/install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..7f5889a42a1 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB BART 2.6 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-bart +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx b/install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..ce52ba8af99 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB BART 2.6 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-bart +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx b/install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..6e5185fc5ff --- /dev/null +++ b/install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB BART 2.6 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-bart +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx b/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..8f61bb34c26 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB BART 2.6 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx b/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx new file mode 100644 index 00000000000..5109ad5bdeb --- /dev/null +++ b/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB BART 2.6 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx b/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..4343f599a7f --- /dev/null +++ b/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB BART 2.6 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx b/install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx new file mode 100644 index 00000000000..cadfaad7479 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB BART 2.6 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..9a90dcb6653 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB BART 2.6 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..c315f3a5710 --- /dev/null +++ b/install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB BART 2.6 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-bart +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..d038043d050 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB JDBC Connector 42.x.x on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-jdbc +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx new file mode 100644 index 00000000000..5cdb7c69cba --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB JDBC Connector 42.x.x on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-jdbc +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx new file mode 100644 index 00000000000..e4a5ed747d9 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB JDBC Connector 42.x.x on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx new file mode 100644 index 00000000000..a2c69969322 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB JDBC Connector 42.x.x on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx new file mode 100644 index 00000000000..a5b1843456e --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB JDBC Connector 42.x.x on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-jdbc +```` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..0a421596481 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB JDBC Connector 42.x.x on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-jdbc +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..9e19706811d --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB JDBC Connector 42.x.x on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-jdbc +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..53777e55657 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB JDBC Connector 42.x.x on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-jdbc +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..9588002ff8d --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB JDBC Connector 42.x.x on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx new file mode 100644 index 00000000000..a59477c911c --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB JDBC Connector 42.x.x on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..85ba22479cf --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB JDBC Connector 42.x.x on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx new file mode 100644 index 00000000000..1f91d713944 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB JDBC Connector 42.x.x on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..6a0ff0ad765 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB JDBC Connector 42.x.x on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..675537a9d36 --- /dev/null +++ b/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB JDBC Connector 42.x.x on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-jdbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..2ea9ff20759 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB MigrationToolkit 54 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-migrationtoolkit +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx new file mode 100644 index 00000000000..ea72bbb0ea2 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB MigrationToolkit 54 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-migrationtoolkit +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx new file mode 100644 index 00000000000..bb48fcfbdc5 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB MigrationToolkit 54 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx new file mode 100644 index 00000000000..62c80ab8942 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB MigrationToolkit 54 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx new file mode 100644 index 00000000000..94390ff3df8 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB MigrationToolkit 54 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-migrationtoolkit +```` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..2c95a73e0ee --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB MigrationToolkit 54 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-migrationtoolkit +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..ffb39930a14 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB MigrationToolkit 54 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-migrationtoolkit +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..3ebaf9790aa --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB MigrationToolkit 54 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-migrationtoolkit +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..495a52e04ac --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB MigrationToolkit 54 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx new file mode 100644 index 00000000000..f3d5cf21501 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB MigrationToolkit 54 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..51a96a1877a --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB MigrationToolkit 54 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx new file mode 100644 index 00000000000..5ca65347e4c --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB MigrationToolkit 54 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..84bde1c110f --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB MigrationToolkit 54 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..088c0711ef4 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB MigrationToolkit 54 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..6d628e9a6c2 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB MigrationToolkit 55 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-migrationtoolkit +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx new file mode 100644 index 00000000000..f8909119b72 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB MigrationToolkit 55 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-migrationtoolkit +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx new file mode 100644 index 00000000000..d290dec34f1 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB MigrationToolkit 55 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx new file mode 100644 index 00000000000..e1bddf60e69 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB MigrationToolkit 55 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx new file mode 100644 index 00000000000..3d7d291a53f --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB MigrationToolkit 55 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-migrationtoolkit +```` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..ead125ce33a --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB MigrationToolkit 55 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-migrationtoolkit +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..689a619c4d8 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB MigrationToolkit 55 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-migrationtoolkit +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..82f7cb7df18 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB MigrationToolkit 55 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-migrationtoolkit +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..fc535080509 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB MigrationToolkit 55 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx new file mode 100644 index 00000000000..00463123ad7 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB MigrationToolkit 55 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..a9280907c93 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB MigrationToolkit 55 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx new file mode 100644 index 00000000000..72dd742f3a5 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB MigrationToolkit 55 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..d1438acef32 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB MigrationToolkit 55 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..d5b1830e0f0 --- /dev/null +++ b/install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB MigrationToolkit 55 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-migrationtoolkit +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..2d38111896f --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB OCI Connector 14.1.0.1 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-oci +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx new file mode 100644 index 00000000000..fd66d6e20c2 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB OCI Connector 14.1.0.1 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-oci +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx new file mode 100644 index 00000000000..46e5c8a7b3c --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB OCI Connector 14.1.0.1 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx new file mode 100644 index 00000000000..bfb6f8f79c8 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB OCI Connector 14.1.0.1 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx new file mode 100644 index 00000000000..ce217c28792 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB OCI Connector 14.1.0.1 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-oci +```` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..110459fe0f8 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB OCI Connector 14.1.0.1 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-oci +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..3b1393a45ba --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB OCI Connector 14.1.0.1 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-oci +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..c447b4c234b --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB OCI Connector 14.1.0.1 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-oci +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..0ebaf0025e7 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB OCI Connector 14.1.0.1 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx new file mode 100644 index 00000000000..7f5e09cd140 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB OCI Connector 14.1.0.1 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..89ba8f73774 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB OCI Connector 14.1.0.1 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx new file mode 100644 index 00000000000..412321123bd --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB OCI Connector 14.1.0.1 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..915eac2f621 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB OCI Connector 14.1.0.1 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..c2529b08c49 --- /dev/null +++ b/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB OCI Connector 14.1.0.1 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-oci +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..b70893089ed --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB ODBC Connector 13.1.0.2 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-odbc +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx new file mode 100644 index 00000000000..ab5898e5fd7 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB ODBC Connector 13.1.0.2 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-odbc +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx new file mode 100644 index 00000000000..7e3bbaddc95 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB ODBC Connector 13.1.0.2 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx new file mode 100644 index 00000000000..c4b256a4a01 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB ODBC Connector 13.1.0.2 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx new file mode 100644 index 00000000000..0c8871d4269 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB ODBC Connector 13.1.0.2 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-odbc +```` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..ab93c5a3658 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB ODBC Connector 13.1.0.2 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-odbc +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..a450d75218b --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB ODBC Connector 13.1.0.2 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-odbc +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..514fa97b1e2 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB ODBC Connector 13.1.0.2 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-odbc +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..08b11331cd6 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB ODBC Connector 13.1.0.2 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx new file mode 100644 index 00000000000..8db53f789ab --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB ODBC Connector 13.1.0.2 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..8e74b4860f1 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB ODBC Connector 13.1.0.2 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx new file mode 100644 index 00000000000..fea8897f5b2 --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB ODBC Connector 13.1.0.2 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..dca176ca82d --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB ODBC Connector 13.1.0.2 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..c93ccd21f9e --- /dev/null +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB ODBC Connector 13.1.0.2 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-odbc +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..1e0e2ecaca4 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB pgBouncer 1.14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgbouncer114 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..bb67ab529f4 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB pgBouncer 1.14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgbouncer114 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..9a7381f7ac6 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB pgBouncer 1.14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..e5f0de75ebd --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..f5371a824ee --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB pgBouncer 1.14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-pgbouncer114 +```` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..2438faead1a --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB pgBouncer 1.14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgbouncer114 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..06e48cd7a88 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB pgBouncer 1.14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgbouncer114 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..a57b3390e8d --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB pgBouncer 1.14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-pgbouncer114 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..57b2dd7bc67 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB pgBouncer 1.14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..a8d3ad0a68e --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB pgBouncer 1.14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..db12feb86d6 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB pgBouncer 1.14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..f61ed56e531 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB pgBouncer 1.14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..aaa71629f4e --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..ec053ae202b --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer114 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..15a620fbcc9 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB pgBouncer 1.15 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgbouncer115 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx new file mode 100644 index 00000000000..70ddd5d3663 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB pgBouncer 1.15 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgbouncer115 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx new file mode 100644 index 00000000000..884f01063ed --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB pgBouncer 1.15 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx new file mode 100644 index 00000000000..97a4b85a686 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.15 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx new file mode 100644 index 00000000000..4ffb7989692 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB pgBouncer 1.15 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-pgbouncer115 +```` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..ff6af8a2830 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB pgBouncer 1.15 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgbouncer115 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..1065f5bb57b --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB pgBouncer 1.15 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgbouncer115 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..f3fd847af20 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB pgBouncer 1.15 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-pgbouncer115 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..21dc7e9f9c0 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB pgBouncer 1.15 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx new file mode 100644 index 00000000000..1b65dbbfa05 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB pgBouncer 1.15 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..a7d1bab8a76 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB pgBouncer 1.15 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx new file mode 100644 index 00000000000..991d190d3a6 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB pgBouncer 1.15 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..216017f5c14 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.15 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..47d5acd6feb --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.15 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer115 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..261065660e3 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB pgBouncer 1.16 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgbouncer116 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx new file mode 100644 index 00000000000..ba0ff2d2809 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB pgBouncer 1.16 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgbouncer116 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx new file mode 100644 index 00000000000..e3cd6794605 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB pgBouncer 1.16 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx new file mode 100644 index 00000000000..eb61a6ae5d8 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.16 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx new file mode 100644 index 00000000000..f4ba5e5be97 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB pgBouncer 1.16 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-pgbouncer116 +```` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..479f48d080e --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB pgBouncer 1.16 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgbouncer116 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..e2643cc8de6 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB pgBouncer 1.16 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgbouncer116 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..ccaae47950b --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB pgBouncer 1.16 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-pgbouncer116 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..1e15d417191 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB pgBouncer 1.16 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx new file mode 100644 index 00000000000..930b3a1d022 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB pgBouncer 1.16 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..cbaed7c28dc --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB pgBouncer 1.16 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx new file mode 100644 index 00000000000..da904faa8f7 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB pgBouncer 1.16 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..044f0202b57 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.16 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..df75cf0928c --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB pgBouncer 1.16 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgbouncer116 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..2bfe5d44f33 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB PgpoolII 4.1 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool41 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx new file mode 100644 index 00000000000..4b4ebc4d76b --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB PgpoolII 4.1 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool41 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx new file mode 100644 index 00000000000..051e095f5ca --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB PgpoolII 4.1 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx new file mode 100644 index 00000000000..85b575cd420 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.1 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx new file mode 100644 index 00000000000..34ada05af41 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB PgpoolII 4.1 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-pgpool41 +```` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..bcfbf334987 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB PgpoolII 4.1 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool41 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..ab45d24a26a --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB PgpoolII 4.1 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool41 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..12d80658bcc --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB PgpoolII 4.1 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool41 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..a4a69eec237 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4.1 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx new file mode 100644 index 00000000000..6d20ab32cdc --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4.1 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..91719477d83 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4.1 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx new file mode 100644 index 00000000000..5f3467bb31f --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4.1 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..541d4302b29 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.1 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..ad3d58a666a --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.1 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool41 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..570106d9273 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB PgpoolII 4.2 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool42 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx new file mode 100644 index 00000000000..8c014a651af --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB PgpoolII 4.2 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool42 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx new file mode 100644 index 00000000000..31b3093fe72 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB PgpoolII 4.2 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx new file mode 100644 index 00000000000..35a8157538a --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.2 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx new file mode 100644 index 00000000000..a16e6de2908 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB PgpoolII 4.2 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-pgpool42 +```` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..b3e61270f97 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB PgpoolII 4.2 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool42 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..f401211c83c --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB PgpoolII 4.2 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool42 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..dca371c1b20 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB PgpoolII 4.2 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool42 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..8cfc76bd3c1 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4.2 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx new file mode 100644 index 00000000000..118b621103e --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4.2 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..b27ae5062cb --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4.2 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx new file mode 100644 index 00000000000..0fedfd9a08a --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4.2 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..a6b79acadad --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.2 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..48b158ad359 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.2 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool42 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..45f919c221a --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB PgpoolII 4.3 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool43 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx new file mode 100644 index 00000000000..d36992e4924 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB PgpoolII 4.3 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool43 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx new file mode 100644 index 00000000000..655ef06d2c8 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB PgpoolII 4.3 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx new file mode 100644 index 00000000000..7e45c07669e --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.3 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx new file mode 100644 index 00000000000..355bfa32131 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB PgpoolII 4.3 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-pgpool43 +```` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..195adfd1b00 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB PgpoolII 4.3 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool43 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..278bf245d6c --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB PgpoolII 4.3 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool43 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..f4b373bcf03 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB PgpoolII 4.3 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool43 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..499a0b94446 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4.3 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ceed898ace3 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4.3 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..dfe3ab43887 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4.3 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx new file mode 100644 index 00000000000..4da0450122c --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4.3 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..449af56e5a8 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.3 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..ec6380762b9 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4.3 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool43 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..54d41704eb3 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing EDB PgpoolII 4 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool4 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx new file mode 100644 index 00000000000..ec1be917d5c --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing EDB PgpoolII 4 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-pgpool4 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx new file mode 100644 index 00000000000..8f186034e96 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing EDB PgpoolII 4 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx new file mode 100644 index 00000000000..3f264e574c2 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx new file mode 100644 index 00000000000..5fb49355e75 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing EDB PgpoolII 4 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-pgpool4 +```` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..7d69edecfbe --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing EDB PgpoolII 4 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool4 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..6d4c63f2ea3 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing EDB PgpoolII 4 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-pgpool4 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..4533ec8a955 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing EDB PgpoolII 4 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-pgpool4 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..e34336f3db2 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..a61fb9430da --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing EDB PgpoolII 4 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..c177dc9a1cb --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..82dff23c1be --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing EDB PgpoolII 4 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..102b06437c5 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..a9021c00f6d --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing EDB PgpoolII 4 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-pgpool4 +``` + +## Initial Configuration diff --git a/install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..2bd592c81de --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx @@ -0,0 +1,147 @@ +# Installing EDB Postgres Advanced Server 10 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as10-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-10 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as10/bin/pg_ctl status -D /var/lib/edb/as10/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx new file mode 100644 index 00000000000..0932628fb05 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 10 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as10-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-10 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as10/bin/pg_ctl status -D /var/lib/edb/as10/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx new file mode 100644 index 00000000000..6288266f22a --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx @@ -0,0 +1,166 @@ +# Installing EDB Postgres Advanced Server 10 on RHEL 7 local + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +```shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the `createrepo` utility on the source server to create the local repository: +yum install -y yum-utils createrepo + +# Import EDB GPG key installed from edb-repo and also the other repositories: +rpm --import /etc/pki/rpm-gpg/* + +# Create the download directory, download all the required packages and populate it using `createrepo`: +$ mkdir -p /tmp/yumdownloaddir +$ cd /tmp/yumdownloaddir +$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart +$ createrepo /tmp/yumdownloaddir + +# Zip up the download directory, ready to be shipped to the target server(s): +$ cd /tmp +$ tar -zcvf yumdownloaddir.tgz yumdownloaddir + +# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. +sudo su - +tar -xvf /tmp/yumdownloaddir.tgz + +# Install the edb repo file and import the EDB GPG key from the archive: +yum localinstall yumdownloaddir/edb-repo*.rpm +rpm --import /etc/pki/rpm-gpg/* + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: +cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo +vi /etc/yum.repos.d/edb_local.repo +[edb-localrepo] +name=EnterpriseDB Localrepo for install without internet access +baseurl=file:///tmp/yumdownloaddir/ +enabled=1 +repo_gpgcheck=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +#skip_if_unavailable = 1 +#keepcache = 0 +``` + +## Installing the Package + +```shell +yum -y install edb-as10-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-10 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..3218bacc2dd --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx @@ -0,0 +1,148 @@ +# Installing EDB Postgres Advanced Server 10 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + + +```shell +yum -y install edb-as10-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-10 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..aa377f0a783 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 10 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + +```shell +yum -y install edb-as10-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-10 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..b0e40a59837 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx @@ -0,0 +1,147 @@ +# Installing EDB Postgres Advanced Server 11 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as11/bin/pg_ctl status -D /var/lib/edb/as11/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx new file mode 100644 index 00000000000..c15d587d010 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 11 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as11/bin/pg_ctl status -D /var/lib/edb/as11/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx new file mode 100644 index 00000000000..990aae12fc6 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx @@ -0,0 +1,137 @@ +# Installing EDB Postgres Advanced Server 11 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as11-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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as11/bin/pg_ctl status -D /var/lib/edb/as11/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx new file mode 100644 index 00000000000..bab06d235d5 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx @@ -0,0 +1,115 @@ +# Installing EDB Postgres Advanced Server 11 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as11-server +```` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx new file mode 100644 index 00000000000..76bd1d38076 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx @@ -0,0 +1,166 @@ +# Installing EDB Postgres Advanced Server 11 on RHEL 7 local + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +```shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the `createrepo` utility on the source server to create the local repository: +yum install -y yum-utils createrepo + +# Import EDB GPG key installed from edb-repo and also the other repositories: +rpm --import /etc/pki/rpm-gpg/* + +# Create the download directory, download all the required packages and populate it using `createrepo`: +$ mkdir -p /tmp/yumdownloaddir +$ cd /tmp/yumdownloaddir +$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart +$ createrepo /tmp/yumdownloaddir + +# Zip up the download directory, ready to be shipped to the target server(s): +$ cd /tmp +$ tar -zcvf yumdownloaddir.tgz yumdownloaddir + +# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. +sudo su - +tar -xvf /tmp/yumdownloaddir.tgz + +# Install the edb repo file and import the EDB GPG key from the archive: +yum localinstall yumdownloaddir/edb-repo*.rpm +rpm --import /etc/pki/rpm-gpg/* + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: +cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo +vi /etc/yum.repos.d/edb_local.repo +[edb-localrepo] +name=EnterpriseDB Localrepo for install without internet access +baseurl=file:///tmp/yumdownloaddir/ +enabled=1 +repo_gpgcheck=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +#skip_if_unavailable = 1 +#keepcache = 0 +``` + +## Installing the Package + +```shell +yum -y install edb-as11-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..2840225ef28 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx @@ -0,0 +1,148 @@ +# Installing EDB Postgres Advanced Server 11 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + + +```shell +yum -y install edb-as11-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..ce37b8cd79e --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 11 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + +```shell +yum -y install edb-as11-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx new file mode 100644 index 00000000000..255e2b8dc6c --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 11 on RHEL 8 Linux on IBM Power (ppc64le) + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..6e9ed322c3b --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 11 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as11`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..e156538a97b --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 11 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx new file mode 100644 index 00000000000..578be3706c8 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 11 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..14a453603a1 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 11 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx new file mode 100644 index 00000000000..f549e187875 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 11 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-11 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..250322fd478 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 11 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..86dad488227 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx @@ -0,0 +1,147 @@ +# Installing EDB Postgres Advanced Server 12 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as12/bin/pg_ctl status -D /var/lib/edb/as12/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx new file mode 100644 index 00000000000..a294126e075 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 12 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as12/bin/pg_ctl status -D /var/lib/edb/as12/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx new file mode 100644 index 00000000000..5ebaaa47388 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx @@ -0,0 +1,137 @@ +# Installing EDB Postgres Advanced Server 12 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as12-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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as12/bin/pg_ctl status -D /var/lib/edb/as12/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx new file mode 100644 index 00000000000..aaeec8934b8 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 12 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx new file mode 100644 index 00000000000..4530918e4b7 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx @@ -0,0 +1,115 @@ +# Installing EDB Postgres Advanced Server 12 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as12-server +```` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx new file mode 100644 index 00000000000..01cb86a4280 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx @@ -0,0 +1,166 @@ +# Installing EDB Postgres Advanced Server 12 on RHEL 7 local + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +```shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the `createrepo` utility on the source server to create the local repository: +yum install -y yum-utils createrepo + +# Import EDB GPG key installed from edb-repo and also the other repositories: +rpm --import /etc/pki/rpm-gpg/* + +# Create the download directory, download all the required packages and populate it using `createrepo`: +$ mkdir -p /tmp/yumdownloaddir +$ cd /tmp/yumdownloaddir +$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart +$ createrepo /tmp/yumdownloaddir + +# Zip up the download directory, ready to be shipped to the target server(s): +$ cd /tmp +$ tar -zcvf yumdownloaddir.tgz yumdownloaddir + +# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. +sudo su - +tar -xvf /tmp/yumdownloaddir.tgz + +# Install the edb repo file and import the EDB GPG key from the archive: +yum localinstall yumdownloaddir/edb-repo*.rpm +rpm --import /etc/pki/rpm-gpg/* + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: +cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo +vi /etc/yum.repos.d/edb_local.repo +[edb-localrepo] +name=EnterpriseDB Localrepo for install without internet access +baseurl=file:///tmp/yumdownloaddir/ +enabled=1 +repo_gpgcheck=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +#skip_if_unavailable = 1 +#keepcache = 0 +``` + +## Installing the Package + +```shell +yum -y install edb-as12-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..72e6700ead0 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx @@ -0,0 +1,148 @@ +# Installing EDB Postgres Advanced Server 12 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + + +```shell +yum -y install edb-as12-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..295cafcad05 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 12 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + +```shell +yum -y install edb-as12-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx new file mode 100644 index 00000000000..dda062a5783 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 12 on RHEL 8 Linux on IBM Power (ppc64le) + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..4dd8f4cdd3e --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 12 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as12`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..5e87882d4cf --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 12 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx new file mode 100644 index 00000000000..128e9130906 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 12 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..71a74a6132e --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 12 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx new file mode 100644 index 00000000000..b38b904b8c7 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 12 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-12 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..68b7c5e3450 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 12 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..a0ffb3f2a6a --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx @@ -0,0 +1,147 @@ +# Installing EDB Postgres Advanced Server 13 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as13/bin/pg_ctl status -D /var/lib/edb/as13/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx new file mode 100644 index 00000000000..fcf6e2ff2d8 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 13 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as13/bin/pg_ctl status -D /var/lib/edb/as13/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx new file mode 100644 index 00000000000..0cd70b8836d --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx @@ -0,0 +1,137 @@ +# Installing EDB Postgres Advanced Server 13 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as13-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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as13/bin/pg_ctl status -D /var/lib/edb/as13/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx new file mode 100644 index 00000000000..76f65935bd3 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 13 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx new file mode 100644 index 00000000000..984037bedc5 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx @@ -0,0 +1,115 @@ +# Installing EDB Postgres Advanced Server 13 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as13-server +```` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx new file mode 100644 index 00000000000..19a7233f741 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx @@ -0,0 +1,166 @@ +# Installing EDB Postgres Advanced Server 13 on RHEL 7 local + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +```shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the `createrepo` utility on the source server to create the local repository: +yum install -y yum-utils createrepo + +# Import EDB GPG key installed from edb-repo and also the other repositories: +rpm --import /etc/pki/rpm-gpg/* + +# Create the download directory, download all the required packages and populate it using `createrepo`: +$ mkdir -p /tmp/yumdownloaddir +$ cd /tmp/yumdownloaddir +$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart +$ createrepo /tmp/yumdownloaddir + +# Zip up the download directory, ready to be shipped to the target server(s): +$ cd /tmp +$ tar -zcvf yumdownloaddir.tgz yumdownloaddir + +# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. +sudo su - +tar -xvf /tmp/yumdownloaddir.tgz + +# Install the edb repo file and import the EDB GPG key from the archive: +yum localinstall yumdownloaddir/edb-repo*.rpm +rpm --import /etc/pki/rpm-gpg/* + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: +cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo +vi /etc/yum.repos.d/edb_local.repo +[edb-localrepo] +name=EnterpriseDB Localrepo for install without internet access +baseurl=file:///tmp/yumdownloaddir/ +enabled=1 +repo_gpgcheck=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +#skip_if_unavailable = 1 +#keepcache = 0 +``` + +## Installing the Package + +```shell +yum -y install edb-as13-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..d4cf21d474e --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx @@ -0,0 +1,148 @@ +# Installing EDB Postgres Advanced Server 13 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + + +```shell +yum -y install edb-as13-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..e7a3b25ba2f --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 13 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + +```shell +yum -y install edb-as13-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx new file mode 100644 index 00000000000..f6479af2d51 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 13 on RHEL 8 Linux on IBM Power (ppc64le) + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..2783f479978 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 13 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as13`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..251c55c74d0 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 13 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx new file mode 100644 index 00000000000..a35b4f08b50 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 13 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..293f1280893 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 13 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx new file mode 100644 index 00000000000..2d8d78348a3 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 13 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-13 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..a9db3de8fbe --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 13 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..4da739c2bc8 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 13 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..e8a94b15373 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx @@ -0,0 +1,147 @@ +# Installing EDB Postgres Advanced Server 14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as14/bin/pg_ctl status -D /var/lib/edb/as14/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..8a7592ac31f --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as14/bin/pg_ctl status -D /var/lib/edb/as14/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..8ed8304208c --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx @@ -0,0 +1,137 @@ +# Installing EDB Postgres Advanced Server 14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as14-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`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as14/bin/pg_ctl status -D /var/lib/edb/as14/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..9e4ad5baec4 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..acc0d5acf09 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx @@ -0,0 +1,115 @@ +# Installing EDB Postgres Advanced Server 14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as14-server +```` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx new file mode 100644 index 00000000000..97248afbe06 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx @@ -0,0 +1,166 @@ +# Installing EDB Postgres Advanced Server 14 on RHEL 7 local + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +```shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the `createrepo` utility on the source server to create the local repository: +yum install -y yum-utils createrepo + +# Import EDB GPG key installed from edb-repo and also the other repositories: +rpm --import /etc/pki/rpm-gpg/* + +# Create the download directory, download all the required packages and populate it using `createrepo`: +$ mkdir -p /tmp/yumdownloaddir +$ cd /tmp/yumdownloaddir +$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart +$ createrepo /tmp/yumdownloaddir + +# Zip up the download directory, ready to be shipped to the target server(s): +$ cd /tmp +$ tar -zcvf yumdownloaddir.tgz yumdownloaddir + +# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. +sudo su - +tar -xvf /tmp/yumdownloaddir.tgz + +# Install the edb repo file and import the EDB GPG key from the archive: +yum localinstall yumdownloaddir/edb-repo*.rpm +rpm --import /etc/pki/rpm-gpg/* + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: +cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo +vi /etc/yum.repos.d/edb_local.repo +[edb-localrepo] +name=EnterpriseDB Localrepo for install without internet access +baseurl=file:///tmp/yumdownloaddir/ +enabled=1 +repo_gpgcheck=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +#skip_if_unavailable = 1 +#keepcache = 0 +``` + +## Installing the Package + +```shell +yum -y install edb-as14-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..ce0008ee46a --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx @@ -0,0 +1,148 @@ +# Installing EDB Postgres Advanced Server 14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + + +```shell +yum -y install edb-as14-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..03d682f33e6 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + +```shell +yum -y install edb-as14-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx new file mode 100644 index 00000000000..f7f19c0fbaf --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 14 on RHEL 8 Linux on IBM Power (ppc64le) + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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 + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..7e67566c6ae --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx @@ -0,0 +1,130 @@ +# Installing EDB Postgres Advanced Server 14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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 + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..35d3a22b408 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..c1c8537882a --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..8525e23ad57 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..a1ca5f468d3 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-14 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..210b6e89e23 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..acce5469b0b --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,110 @@ +# Installing EDB Postgres Advanced Server 14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-server +``` + +## Initial Configuration + +For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..68020247a62 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx @@ -0,0 +1,147 @@ +# Installing EDB Postgres Advanced Server 9.6 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as96-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as9.6/bin/pg_ctl status -D /var/lib/edb/as9.6/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx new file mode 100644 index 00000000000..904cc652eba --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 9.6 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as96-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To ensure the installation and initial configuration was successful, check the status of your cluster: + + ```sh + /usr/edb/as9.6/bin/pg_ctl status -D /var/lib/edb/as9.6/data + ``` + + See [Managing Cluster > Managing Services] for more information. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx new file mode 100644 index 00000000000..ba8661a292c --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx @@ -0,0 +1,166 @@ +# Installing EDB Postgres Advanced Server 9.6 on RHEL 7 local + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +```shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the `createrepo` utility on the source server to create the local repository: +yum install -y yum-utils createrepo + +# Import EDB GPG key installed from edb-repo and also the other repositories: +rpm --import /etc/pki/rpm-gpg/* + +# Create the download directory, download all the required packages and populate it using `createrepo`: +$ mkdir -p /tmp/yumdownloaddir +$ cd /tmp/yumdownloaddir +$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart +$ createrepo /tmp/yumdownloaddir + +# Zip up the download directory, ready to be shipped to the target server(s): +$ cd /tmp +$ tar -zcvf yumdownloaddir.tgz yumdownloaddir + +# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. +sudo su - +tar -xvf /tmp/yumdownloaddir.tgz + +# Install the edb repo file and import the EDB GPG key from the archive: +yum localinstall yumdownloaddir/edb-repo*.rpm +rpm --import /etc/pki/rpm-gpg/* + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: +cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo +vi /etc/yum.repos.d/edb_local.repo +[edb-localrepo] +name=EnterpriseDB Localrepo for install without internet access +baseurl=file:///tmp/yumdownloaddir/ +enabled=1 +repo_gpgcheck=0 +gpgcheck=1 +gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY +#skip_if_unavailable = 1 +#keepcache = 0 +``` + +## Installing the Package + +```shell +yum -y install edb-as96-server +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..ba693c30ab3 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx @@ -0,0 +1,148 @@ +# Installing EDB Postgres Advanced Server 9.6 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + + +```shell +yum -y install edb-as96-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..a9ab32e596f --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx @@ -0,0 +1,129 @@ +# Installing EDB Postgres Advanced Server 9.6 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + + +```shell +yum -y install edb-as96-server +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..9d9967f33c9 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 9.6 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx new file mode 100644 index 00000000000..a57024eae35 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx @@ -0,0 +1,133 @@ +# Installing EDB Postgres Advanced Server 9.6 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..9b4899aefee --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 9.6 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx new file mode 100644 index 00000000000..e77efa697d6 --- /dev/null +++ b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx @@ -0,0 +1,123 @@ +# Installing EDB Postgres Advanced Server 9.6 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as96-server +``` + +## Initial Configuration + +1. Initialize the database cluster: + + ```sh + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb + ``` + +1. Start the database cluster: + + ```sh + systemctl start edb-as-9.6 + ``` + +## Connecting to Your Database cluster + +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. + +1. To work in your cluster, login as `enterprisedb` user: + + ```sh + su - enterprisedb + ``` + + See [Managing Your Cluster > Managing Services], for more information. + +1. Connect to the database server using psql command line client: + + ```sh + psql edb + ``` + + See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. + +1. Then, assign a password to the database superuser `enterprisedb`: + + ```sh + ALTER ROLE enterprisedb IDENTIFIED BY password; + ``` + +## Creating a Database + +This section steps you through creating and adding data to a simple database. + +1. Create a database (named hr): + + ```sh + CREATE DATABASE hr; + ``` + +1. Connect to the new database and create a table (named dept): + + ```sh + \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)); + ``` + +1. Add data to the table: + + ```sh + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + ``` + +1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: + + ```sh + SELECT * FROM dept; + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` diff --git a/install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..cb96b71bf1b --- /dev/null +++ b/install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Failover Manager 3.1 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm31 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx b/install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx new file mode 100644 index 00000000000..606a04e710e --- /dev/null +++ b/install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Failover Manager 3.1 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm31 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx b/install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx new file mode 100644 index 00000000000..c9b7200e98c --- /dev/null +++ b/install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Failover Manager 3.1 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx b/install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx new file mode 100644 index 00000000000..d1375682197 --- /dev/null +++ b/install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 3.1 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx b/install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx new file mode 100644 index 00000000000..d780f7ddcf6 --- /dev/null +++ b/install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Failover Manager 3.1 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-efm31 +```` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..d6784a2b36b --- /dev/null +++ b/install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Failover Manager 3.1 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm31 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..7cc89ab8075 --- /dev/null +++ b/install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Failover Manager 3.1 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm31 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..7b26889501b --- /dev/null +++ b/install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Failover Manager 3.1 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-efm31 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..c2d013e477d --- /dev/null +++ b/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 3.1 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx b/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx new file mode 100644 index 00000000000..779e10e1f16 --- /dev/null +++ b/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 3.1 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..f85aaa8738f --- /dev/null +++ b/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 3.1 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx b/install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx new file mode 100644 index 00000000000..4ca86e90a59 --- /dev/null +++ b/install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 3.1 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..5a66b8cb4db --- /dev/null +++ b/install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 3.1 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..28c716857b3 --- /dev/null +++ b/install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 3.1 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm31 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..7d58981c973 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Failover Manager 4.1 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm41 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx new file mode 100644 index 00000000000..67dac00e6b2 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Failover Manager 4.1 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm41 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx new file mode 100644 index 00000000000..38c72d33800 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Failover Manager 4.1 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx new file mode 100644 index 00000000000..b568e1ded58 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.1 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx new file mode 100644 index 00000000000..60874e0508f --- /dev/null +++ b/install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Failover Manager 4.1 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-efm41 +```` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..622f87a16a5 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Failover Manager 4.1 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm41 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..fce57cbef69 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Failover Manager 4.1 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm41 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..49d8b200c2a --- /dev/null +++ b/install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Failover Manager 4.1 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-efm41 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..2d8fbd55fc0 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.1 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx new file mode 100644 index 00000000000..41cf188e60f --- /dev/null +++ b/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.1 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..ffdcee46812 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.1 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx new file mode 100644 index 00000000000..9432eadc133 --- /dev/null +++ b/install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.1 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..3f36c4e4adb --- /dev/null +++ b/install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.1 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..89ce8a933cd --- /dev/null +++ b/install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.1 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm41 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..43f9c809f46 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Failover Manager 4.2 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm42 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx new file mode 100644 index 00000000000..2bb67debbc2 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Failover Manager 4.2 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm42 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx new file mode 100644 index 00000000000..0448e3f007e --- /dev/null +++ b/install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Failover Manager 4.2 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx new file mode 100644 index 00000000000..e736781a13f --- /dev/null +++ b/install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.2 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx new file mode 100644 index 00000000000..0359f7992fc --- /dev/null +++ b/install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Failover Manager 4.2 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-efm42 +```` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..c9512e577af --- /dev/null +++ b/install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Failover Manager 4.2 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm42 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..482b62bbde6 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Failover Manager 4.2 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm42 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..70c0ff613c5 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Failover Manager 4.2 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-efm42 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..e5caecfc3e2 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.2 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx new file mode 100644 index 00000000000..79e2b61ae10 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.2 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..ca478564b1e --- /dev/null +++ b/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.2 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx new file mode 100644 index 00000000000..c4ad3f14702 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.2 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..faa0c33874b --- /dev/null +++ b/install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.2 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..65176cf52a2 --- /dev/null +++ b/install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.2 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm42 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..89216a380d2 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Failover Manager 4.3 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm43 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx new file mode 100644 index 00000000000..2d0b3875773 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Failover Manager 4.3 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm43 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx new file mode 100644 index 00000000000..8c2c732bd8d --- /dev/null +++ b/install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Failover Manager 4.3 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx new file mode 100644 index 00000000000..458dbfde2fd --- /dev/null +++ b/install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.3 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx new file mode 100644 index 00000000000..a65a1608f93 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Failover Manager 4.3 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-efm43 +```` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..e2396201cb0 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Failover Manager 4.3 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm43 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..a6b167dd972 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Failover Manager 4.3 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm43 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..4ce6a52a440 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Failover Manager 4.3 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-efm43 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..51eff5167af --- /dev/null +++ b/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.3 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx new file mode 100644 index 00000000000..b71d49de4e2 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.3 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..bd92810dd96 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.3 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx new file mode 100644 index 00000000000..5cafe4a98f8 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.3 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..508737c3dec --- /dev/null +++ b/install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.3 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..c4ec57b9ce5 --- /dev/null +++ b/install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.3 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm43 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..fd8483d20b7 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Failover Manager 4.4 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm44 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx new file mode 100644 index 00000000000..95bfe21e3bc --- /dev/null +++ b/install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Failover Manager 4.4 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm44 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx new file mode 100644 index 00000000000..b63207114b0 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Failover Manager 4.4 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx new file mode 100644 index 00000000000..c412e646ced --- /dev/null +++ b/install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.4 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx new file mode 100644 index 00000000000..4559b0d2e29 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Failover Manager 4.4 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-efm44 +```` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..8f2e7bc49ba --- /dev/null +++ b/install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Failover Manager 4.4 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm44 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..553f172745c --- /dev/null +++ b/install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Failover Manager 4.4 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm44 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..6c7f8a65b14 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Failover Manager 4.4 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-efm44 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..63b5918d505 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.4 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..c47a13c80d0 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4.4 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..646765ef6c9 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.4 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..d8907980d0a --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4.4 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..9c6abf151db --- /dev/null +++ b/install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.4 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..65380d6ddd5 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4.4 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm44 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..d8dcda4add1 --- /dev/null +++ b/install_template/renders/failover-manager_4_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Failover Manager 4 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm4 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4_centos-7_x86_64.mdx new file mode 100644 index 00000000000..c2a7a9d095e --- /dev/null +++ b/install_template/renders/failover-manager_4_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Failover Manager 4 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-efm4 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4_centos-8_x86_64.mdx new file mode 100644 index 00000000000..cff9f344d54 --- /dev/null +++ b/install_template/renders/failover-manager_4_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Failover Manager 4 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4_debian-10_x86_64.mdx new file mode 100644 index 00000000000..13bfcbbc071 --- /dev/null +++ b/install_template/renders/failover-manager_4_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4_debian-9_x86_64.mdx new file mode 100644 index 00000000000..f530a58a0df --- /dev/null +++ b/install_template/renders/failover-manager_4_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Failover Manager 4 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-efm4 +```` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..780135e82e2 --- /dev/null +++ b/install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Failover Manager 4 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm4 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..ff90e099633 --- /dev/null +++ b/install_template/renders/failover-manager_4_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Failover Manager 4 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-efm4 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..87a38182fa0 --- /dev/null +++ b/install_template/renders/failover-manager_4_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Failover Manager 4 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-efm4 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..32d4f1d741e --- /dev/null +++ b/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..a46f1249568 --- /dev/null +++ b/install_template/renders/failover-manager_4_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Failover Manager 4 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..996d0652e07 --- /dev/null +++ b/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..5ed75dd3e36 --- /dev/null +++ b/install_template/renders/failover-manager_4_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Failover Manager 4 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..8342ae887f7 --- /dev/null +++ b/install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..77fc2db9ac7 --- /dev/null +++ b/install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Failover Manager 4 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-efm4 +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..cf142ec3b8f --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Hadoop Foreign Data Wrapper 11 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx new file mode 100644 index 00000000000..a6e7c5f8b11 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Hadoop Foreign Data Wrapper 11 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx new file mode 100644 index 00000000000..149e7ffe0c8 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Hadoop Foreign Data Wrapper 11 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx new file mode 100644 index 00000000000..710cb96a8d3 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 11 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx new file mode 100644 index 00000000000..c98e79ad4f0 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Hadoop Foreign Data Wrapper 11 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as11-hdfs_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..eaea6f6555f --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Hadoop Foreign Data Wrapper 11 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..4f6aaa9bc91 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Hadoop Foreign Data Wrapper 11 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..592c3b589f8 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Hadoop Foreign Data Wrapper 11 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..d999e83b580 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 11 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx new file mode 100644 index 00000000000..321acba641d --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 11 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..89be0bf1b40 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 11 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx new file mode 100644 index 00000000000..f0e1936311e --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 11 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..4c80cb43e38 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 11 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..8b85c7a82f4 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 11 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..3f4b18d6d65 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Hadoop Foreign Data Wrapper 12 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx new file mode 100644 index 00000000000..567a1537456 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Hadoop Foreign Data Wrapper 12 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx new file mode 100644 index 00000000000..c5bf9575320 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Hadoop Foreign Data Wrapper 12 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx new file mode 100644 index 00000000000..68f3fc5fe72 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 12 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx new file mode 100644 index 00000000000..aef2577a35b --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Hadoop Foreign Data Wrapper 12 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as12-hdfs_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..719a6c7617b --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Hadoop Foreign Data Wrapper 12 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..fc2c850b71b --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Hadoop Foreign Data Wrapper 12 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..df6c008f37c --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Hadoop Foreign Data Wrapper 12 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..ffadcb595b2 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 12 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ef64729548e --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 12 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..29fe868ee81 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 12 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx new file mode 100644 index 00000000000..cfb1db8179a --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 12 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..5f652effbb5 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 12 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..330d332f67c --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 12 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..4a84fadfa95 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Hadoop Foreign Data Wrapper 13 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx new file mode 100644 index 00000000000..a7ee418d996 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Hadoop Foreign Data Wrapper 13 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx new file mode 100644 index 00000000000..7f2b0658742 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Hadoop Foreign Data Wrapper 13 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx new file mode 100644 index 00000000000..68988f947e3 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 13 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx new file mode 100644 index 00000000000..899f38d8146 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Hadoop Foreign Data Wrapper 13 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as13-hdfs_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..f27566a46c9 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Hadoop Foreign Data Wrapper 13 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..d10cadb3c8e --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Hadoop Foreign Data Wrapper 13 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..3bf06dc2caa --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Hadoop Foreign Data Wrapper 13 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..b4358108fa0 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 13 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx new file mode 100644 index 00000000000..c4cf6a3ff1a --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 13 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..7474faa1ae5 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 13 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx new file mode 100644 index 00000000000..a6cb765d9d2 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 13 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..74cff12b522 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 13 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..ebe50e10382 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 13 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..b5f56c265e1 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Hadoop Foreign Data Wrapper 14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..434f0f27164 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Hadoop Foreign Data Wrapper 14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..f6ab8d80dbe --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Hadoop Foreign Data Wrapper 14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..0a5c843e1c2 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..8384f57f66e --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Hadoop Foreign Data Wrapper 14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as14-hdfs_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..d2b61ca98f5 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Hadoop Foreign Data Wrapper 14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..7da6a89f676 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Hadoop Foreign Data Wrapper 14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-hdfs_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..2cd143d2c16 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Hadoop Foreign Data Wrapper 14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-hdfs_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..ac3b97de2a9 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..63f353e7c54 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Hadoop Foreign Data Wrapper 14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..ef9cc76fd3c --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..df823838a15 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Hadoop Foreign Data Wrapper 14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..eb6c6e8e7b7 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..fdea3da0afe --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Hadoop Foreign Data Wrapper 14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-hdfs_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..8a2a365ded7 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MongoDB Foreign Data Wrapper 11 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx new file mode 100644 index 00000000000..489a842bebc --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MongoDB Foreign Data Wrapper 11 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx new file mode 100644 index 00000000000..fadbf0bd74c --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MongoDB Foreign Data Wrapper 11 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx new file mode 100644 index 00000000000..9b902a55c31 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 11 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx new file mode 100644 index 00000000000..542053ec45a --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MongoDB Foreign Data Wrapper 11 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as11-mongo_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..6aa55f02c82 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MongoDB Foreign Data Wrapper 11 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..72d24e64025 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MongoDB Foreign Data Wrapper 11 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..41605e0d4af --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MongoDB Foreign Data Wrapper 11 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..1b61a383576 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 11 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx new file mode 100644 index 00000000000..aebcb454922 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 11 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..e72b6ea9678 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 11 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx new file mode 100644 index 00000000000..017443bb7da --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 11 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..a6bca44dea1 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 11 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..afb5f394f69 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 11 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..04090df2a96 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MongoDB Foreign Data Wrapper 12 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx new file mode 100644 index 00000000000..a667d1f4ff3 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MongoDB Foreign Data Wrapper 12 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx new file mode 100644 index 00000000000..02ac9fea434 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MongoDB Foreign Data Wrapper 12 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx new file mode 100644 index 00000000000..e97fa3056c1 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 12 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx new file mode 100644 index 00000000000..c8aa656b3f3 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MongoDB Foreign Data Wrapper 12 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as12-mongo_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..c28125701d3 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MongoDB Foreign Data Wrapper 12 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..1f7433c7949 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MongoDB Foreign Data Wrapper 12 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..245702aa5b7 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MongoDB Foreign Data Wrapper 12 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..74ba24ef9bb --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 12 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx new file mode 100644 index 00000000000..2b352e6d2c6 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 12 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..503c1768616 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 12 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx new file mode 100644 index 00000000000..ed789404a54 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 12 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..4a0d0caa546 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 12 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..ff0e781c256 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 12 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..b99baed0dd7 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MongoDB Foreign Data Wrapper 13 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx new file mode 100644 index 00000000000..4548e9e8aa8 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MongoDB Foreign Data Wrapper 13 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx new file mode 100644 index 00000000000..62bf9d791f6 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MongoDB Foreign Data Wrapper 13 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx new file mode 100644 index 00000000000..f2faa02c54f --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 13 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx new file mode 100644 index 00000000000..d26ace1364d --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MongoDB Foreign Data Wrapper 13 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as13-mongo_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..a647c7c5579 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MongoDB Foreign Data Wrapper 13 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..a364adf741e --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MongoDB Foreign Data Wrapper 13 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..d41bd67880b --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MongoDB Foreign Data Wrapper 13 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..6170e6e4530 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 13 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx new file mode 100644 index 00000000000..211174b6f76 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 13 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..97b1774c169 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 13 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx new file mode 100644 index 00000000000..e1bef87d199 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 13 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..c963f7a4c07 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 13 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..403b446a092 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 13 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..86c1a0c3688 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MongoDB Foreign Data Wrapper 14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..19c284f09d6 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MongoDB Foreign Data Wrapper 14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..ab14339b7aa --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MongoDB Foreign Data Wrapper 14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..0e183444618 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..3b24efdecd6 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MongoDB Foreign Data Wrapper 14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as14-mongo_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..124f7ed72d0 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MongoDB Foreign Data Wrapper 14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..334a62a51f4 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MongoDB Foreign Data Wrapper 14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-mongo_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..e829d015b19 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MongoDB Foreign Data Wrapper 14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-mongo_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..2360ba8b61f --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..2b747f32078 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MongoDB Foreign Data Wrapper 14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..88abf399ed6 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..670e3ea1efe --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MongoDB Foreign Data Wrapper 14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..fc0cf1048dc --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..a75810be615 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MongoDB Foreign Data Wrapper 14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-mongo_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..a9045457f64 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MySQL Foreign Data Wrapper 11 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx new file mode 100644 index 00000000000..492d78e8f40 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MySQL Foreign Data Wrapper 11 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx new file mode 100644 index 00000000000..0676c0a952c --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MySQL Foreign Data Wrapper 11 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx new file mode 100644 index 00000000000..1a43cba01aa --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 11 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx new file mode 100644 index 00000000000..b7459e09ad3 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MySQL Foreign Data Wrapper 11 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as11-mysql8_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..f52f9ffc935 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MySQL Foreign Data Wrapper 11 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..6c1a3355853 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MySQL Foreign Data Wrapper 11 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..b07176d2aca --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MySQL Foreign Data Wrapper 11 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..1a44b24cbb4 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 11 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ffca188e4e9 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 11 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..43b883ee393 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 11 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx new file mode 100644 index 00000000000..db0dbf985eb --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 11 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..5044171248b --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 11 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..8c1b512eddf --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 11 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..35b8c426c7a --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MySQL Foreign Data Wrapper 12 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx new file mode 100644 index 00000000000..ab76eb2a5de --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MySQL Foreign Data Wrapper 12 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx new file mode 100644 index 00000000000..971ac6c5f50 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MySQL Foreign Data Wrapper 12 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx new file mode 100644 index 00000000000..33d8901754d --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 12 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx new file mode 100644 index 00000000000..6159e64df68 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MySQL Foreign Data Wrapper 12 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as12-mysql8_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..ff1a6209f83 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MySQL Foreign Data Wrapper 12 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..53d029e90e7 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MySQL Foreign Data Wrapper 12 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..a92cf68818c --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MySQL Foreign Data Wrapper 12 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..9eb2f195de8 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 12 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx new file mode 100644 index 00000000000..d5ced00a989 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 12 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..ec9f96d2d59 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 12 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx new file mode 100644 index 00000000000..9d2a148599e --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 12 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..8d8176257d9 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 12 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..22032c535f1 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 12 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..8e1ca98a3ac --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MySQL Foreign Data Wrapper 13 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx new file mode 100644 index 00000000000..552cc782d5f --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MySQL Foreign Data Wrapper 13 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx new file mode 100644 index 00000000000..3dcf8fc6b04 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MySQL Foreign Data Wrapper 13 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx new file mode 100644 index 00000000000..d716a569f69 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 13 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx new file mode 100644 index 00000000000..31845bba3ac --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MySQL Foreign Data Wrapper 13 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as13-mysql8_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..9bc6c5429ec --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MySQL Foreign Data Wrapper 13 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..1e788123d41 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MySQL Foreign Data Wrapper 13 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..4a0087017db --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MySQL Foreign Data Wrapper 13 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..1ef7edc936c --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 13 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ff286f178d9 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 13 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..cbadf5a11b9 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 13 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx new file mode 100644 index 00000000000..d9dd4d41000 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 13 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..87c3d84995a --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 13 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..605712eed98 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 13 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..99ce95400fe --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing MySQL Foreign Data Wrapper 14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..ef8cf4ce737 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing MySQL Foreign Data Wrapper 14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..b44586ba978 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing MySQL Foreign Data Wrapper 14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..06bd6431268 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..f3f56f31d49 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing MySQL Foreign Data Wrapper 14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as14-mysql8_fdw +```` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..0e88e992089 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing MySQL Foreign Data Wrapper 14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..8b0f5a226a9 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing MySQL Foreign Data Wrapper 14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-mysql8_fdw +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..13f07e4b8fb --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing MySQL Foreign Data Wrapper 14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-mysql8_fdw +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..d13ed8323b5 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..e5b00a226c8 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing MySQL Foreign Data Wrapper 14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..02c8ae55aac --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..d41fd3046bb --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing MySQL Foreign Data Wrapper 14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..67e6eaaf184 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..e3ef0464b54 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing MySQL Foreign Data Wrapper 14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-mysql8_fdw +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_centos-7_ppc64le.mdx b/install_template/renders/postgis_11_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..54134adbd47 --- /dev/null +++ b/install_template/renders/postgis_11_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing PostGIS 11 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_11_centos-7_x86_64.mdx b/install_template/renders/postgis_11_centos-7_x86_64.mdx new file mode 100644 index 00000000000..c11589b2088 --- /dev/null +++ b/install_template/renders/postgis_11_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing PostGIS 11 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_11_centos-8_x86_64.mdx b/install_template/renders/postgis_11_centos-8_x86_64.mdx new file mode 100644 index 00000000000..8d40ea97154 --- /dev/null +++ b/install_template/renders/postgis_11_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing PostGIS 11 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_debian-10_x86_64.mdx b/install_template/renders/postgis_11_debian-10_x86_64.mdx new file mode 100644 index 00000000000..1de21f15b5a --- /dev/null +++ b/install_template/renders/postgis_11_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 11 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_debian-9_x86_64.mdx b/install_template/renders/postgis_11_debian-9_x86_64.mdx new file mode 100644 index 00000000000..a327c3ce82f --- /dev/null +++ b/install_template/renders/postgis_11_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing PostGIS 11 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as11-postgis3 +```` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_rhel-7_ppc64le.mdx b/install_template/renders/postgis_11_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..2f740f2a048 --- /dev/null +++ b/install_template/renders/postgis_11_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing PostGIS 11 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_11_rhel-7_x86_64.mdx b/install_template/renders/postgis_11_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..f807cbc8fa6 --- /dev/null +++ b/install_template/renders/postgis_11_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing PostGIS 11 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_11_rhel-8_x86_64.mdx b/install_template/renders/postgis_11_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..a671ed1646c --- /dev/null +++ b/install_template/renders/postgis_11_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing PostGIS 11 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-12_ppc64le.mdx b/install_template/renders/postgis_11_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..ec7bc892dc3 --- /dev/null +++ b/install_template/renders/postgis_11_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 11 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-12_x86_64.mdx b/install_template/renders/postgis_11_sles-12_x86_64.mdx new file mode 100644 index 00000000000..5dfdece6289 --- /dev/null +++ b/install_template/renders/postgis_11_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 11 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-15_ppc64le.mdx b/install_template/renders/postgis_11_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..9cc131d7524 --- /dev/null +++ b/install_template/renders/postgis_11_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 11 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-15_x86_64.mdx b/install_template/renders/postgis_11_sles-15_x86_64.mdx new file mode 100644 index 00000000000..b49052a1aa4 --- /dev/null +++ b/install_template/renders/postgis_11_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 11 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..995bae1948e --- /dev/null +++ b/install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 11 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..93e6ce5a498 --- /dev/null +++ b/install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 11 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_centos-7_ppc64le.mdx b/install_template/renders/postgis_12_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..27b2fb1d40f --- /dev/null +++ b/install_template/renders/postgis_12_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing PostGIS 12 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_12_centos-7_x86_64.mdx b/install_template/renders/postgis_12_centos-7_x86_64.mdx new file mode 100644 index 00000000000..52ccc34b865 --- /dev/null +++ b/install_template/renders/postgis_12_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing PostGIS 12 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_12_centos-8_x86_64.mdx b/install_template/renders/postgis_12_centos-8_x86_64.mdx new file mode 100644 index 00000000000..8e97f0ddbd1 --- /dev/null +++ b/install_template/renders/postgis_12_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing PostGIS 12 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_debian-10_x86_64.mdx b/install_template/renders/postgis_12_debian-10_x86_64.mdx new file mode 100644 index 00000000000..5d2b585dfb5 --- /dev/null +++ b/install_template/renders/postgis_12_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 12 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_debian-9_x86_64.mdx b/install_template/renders/postgis_12_debian-9_x86_64.mdx new file mode 100644 index 00000000000..aaf6ece4c92 --- /dev/null +++ b/install_template/renders/postgis_12_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing PostGIS 12 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as12-postgis3 +```` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_rhel-7_ppc64le.mdx b/install_template/renders/postgis_12_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..f26449af53e --- /dev/null +++ b/install_template/renders/postgis_12_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing PostGIS 12 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_12_rhel-7_x86_64.mdx b/install_template/renders/postgis_12_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..6d5fb1e8f7d --- /dev/null +++ b/install_template/renders/postgis_12_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing PostGIS 12 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_12_rhel-8_x86_64.mdx b/install_template/renders/postgis_12_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..a3aecbebb44 --- /dev/null +++ b/install_template/renders/postgis_12_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing PostGIS 12 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-12_ppc64le.mdx b/install_template/renders/postgis_12_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..7cbce47f685 --- /dev/null +++ b/install_template/renders/postgis_12_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 12 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-12_x86_64.mdx b/install_template/renders/postgis_12_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ae4e3e500da --- /dev/null +++ b/install_template/renders/postgis_12_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 12 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-15_ppc64le.mdx b/install_template/renders/postgis_12_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..515caed277d --- /dev/null +++ b/install_template/renders/postgis_12_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 12 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-15_x86_64.mdx b/install_template/renders/postgis_12_sles-15_x86_64.mdx new file mode 100644 index 00000000000..ca1c8ad9e62 --- /dev/null +++ b/install_template/renders/postgis_12_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 12 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..5c8df22fdd8 --- /dev/null +++ b/install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 12 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..75e5ee1919d --- /dev/null +++ b/install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 12 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_centos-7_ppc64le.mdx b/install_template/renders/postgis_13_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..100d4b2cafe --- /dev/null +++ b/install_template/renders/postgis_13_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing PostGIS 13 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_13_centos-7_x86_64.mdx b/install_template/renders/postgis_13_centos-7_x86_64.mdx new file mode 100644 index 00000000000..c9e1ad25f85 --- /dev/null +++ b/install_template/renders/postgis_13_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing PostGIS 13 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_13_centos-8_x86_64.mdx b/install_template/renders/postgis_13_centos-8_x86_64.mdx new file mode 100644 index 00000000000..684bd3b61ad --- /dev/null +++ b/install_template/renders/postgis_13_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing PostGIS 13 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_debian-10_x86_64.mdx b/install_template/renders/postgis_13_debian-10_x86_64.mdx new file mode 100644 index 00000000000..148cccec024 --- /dev/null +++ b/install_template/renders/postgis_13_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 13 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_debian-9_x86_64.mdx b/install_template/renders/postgis_13_debian-9_x86_64.mdx new file mode 100644 index 00000000000..3591ed156b2 --- /dev/null +++ b/install_template/renders/postgis_13_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing PostGIS 13 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as13-postgis3 +```` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_rhel-7_ppc64le.mdx b/install_template/renders/postgis_13_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..aa8e5bba9ee --- /dev/null +++ b/install_template/renders/postgis_13_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing PostGIS 13 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_13_rhel-7_x86_64.mdx b/install_template/renders/postgis_13_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..c9dc263759d --- /dev/null +++ b/install_template/renders/postgis_13_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing PostGIS 13 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_13_rhel-8_x86_64.mdx b/install_template/renders/postgis_13_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..a9037935830 --- /dev/null +++ b/install_template/renders/postgis_13_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing PostGIS 13 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-12_ppc64le.mdx b/install_template/renders/postgis_13_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..9f6944fab06 --- /dev/null +++ b/install_template/renders/postgis_13_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 13 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-12_x86_64.mdx b/install_template/renders/postgis_13_sles-12_x86_64.mdx new file mode 100644 index 00000000000..b5409a3f5f0 --- /dev/null +++ b/install_template/renders/postgis_13_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 13 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-15_ppc64le.mdx b/install_template/renders/postgis_13_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..4be491b9488 --- /dev/null +++ b/install_template/renders/postgis_13_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 13 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-15_x86_64.mdx b/install_template/renders/postgis_13_sles-15_x86_64.mdx new file mode 100644 index 00000000000..b78490d0a60 --- /dev/null +++ b/install_template/renders/postgis_13_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 13 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..34ea89ddd8c --- /dev/null +++ b/install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 13 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..f9ba677c03d --- /dev/null +++ b/install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 13 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_centos-7_ppc64le.mdx b/install_template/renders/postgis_14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..5e3b14f8f62 --- /dev/null +++ b/install_template/renders/postgis_14_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing PostGIS 14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_14_centos-7_x86_64.mdx b/install_template/renders/postgis_14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..5f6fd0fd004 --- /dev/null +++ b/install_template/renders/postgis_14_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing PostGIS 14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_14_centos-8_x86_64.mdx b/install_template/renders/postgis_14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..e425fddcfa6 --- /dev/null +++ b/install_template/renders/postgis_14_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing PostGIS 14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_debian-10_x86_64.mdx b/install_template/renders/postgis_14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..6658245869f --- /dev/null +++ b/install_template/renders/postgis_14_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_debian-9_x86_64.mdx b/install_template/renders/postgis_14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..cfe510fc5a0 --- /dev/null +++ b/install_template/renders/postgis_14_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing PostGIS 14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as14-postgis3 +```` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_rhel-7_ppc64le.mdx b/install_template/renders/postgis_14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..fbff0e10d2e --- /dev/null +++ b/install_template/renders/postgis_14_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing PostGIS 14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_14_rhel-7_x86_64.mdx b/install_template/renders/postgis_14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..7b3add63988 --- /dev/null +++ b/install_template/renders/postgis_14_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing PostGIS 14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-postgis3 +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_14_rhel-8_x86_64.mdx b/install_template/renders/postgis_14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..eae127f7bef --- /dev/null +++ b/install_template/renders/postgis_14_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing PostGIS 14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-postgis3 +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-12_ppc64le.mdx b/install_template/renders/postgis_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..9f6ea0b1051 --- /dev/null +++ b/install_template/renders/postgis_14_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-12_x86_64.mdx b/install_template/renders/postgis_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..945ae034e19 --- /dev/null +++ b/install_template/renders/postgis_14_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing PostGIS 14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-15_ppc64le.mdx b/install_template/renders/postgis_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..afc3501ce81 --- /dev/null +++ b/install_template/renders/postgis_14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-15_x86_64.mdx b/install_template/renders/postgis_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..617a1ce1145 --- /dev/null +++ b/install_template/renders/postgis_14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing PostGIS 14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..dd677f5e847 --- /dev/null +++ b/install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..e7f5693b0f2 --- /dev/null +++ b/install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing PostGIS 14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-postgis3 +``` + +## Initial Configuration diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..3d6382ee8e3 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx @@ -0,0 +1,76 @@ +# Installing Postgres Enterprise Manager 7 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx new file mode 100644 index 00000000000..5696d1211da --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Postgres Enterprise Manager 7 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx new file mode 100644 index 00000000000..ffe07e9122d --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx @@ -0,0 +1,66 @@ +# Installing Postgres Enterprise Manager 7 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx new file mode 100644 index 00000000000..f3a0c87095a --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx @@ -0,0 +1,59 @@ +# Installing Postgres Enterprise Manager 7 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx new file mode 100644 index 00000000000..c56c42b223c --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx @@ -0,0 +1,61 @@ +# Installing Postgres Enterprise Manager 7 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + +# Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..716ed8c7052 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx @@ -0,0 +1,80 @@ +# Installing Postgres Enterprise Manager 7 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..fb281daedae --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx @@ -0,0 +1,62 @@ +# Installing Postgres Enterprise Manager 7 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..d7918917f7c --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx @@ -0,0 +1,67 @@ +# Installing Postgres Enterprise Manager 7 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +dnf -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..53b3ad10f25 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx @@ -0,0 +1,72 @@ +# Installing Postgres Enterprise Manager 7 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx new file mode 100644 index 00000000000..bf9f69435bc --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx @@ -0,0 +1,72 @@ +# Installing Postgres Enterprise Manager 7 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..44164c86f6b --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Postgres Enterprise Manager 7 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx new file mode 100644 index 00000000000..b6e85134cf2 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx @@ -0,0 +1,62 @@ +# Installing Postgres Enterprise Manager 7 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..cd02116f95a --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,59 @@ +# Installing Postgres Enterprise Manager 7 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..a84e656a8fe --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,59 @@ +# Installing Postgres Enterprise Manager 7 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..01bdc69a52b --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx @@ -0,0 +1,76 @@ +# Installing Postgres Enterprise Manager 8 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx new file mode 100644 index 00000000000..21e7a54d69f --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Postgres Enterprise Manager 8 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx new file mode 100644 index 00000000000..ef24674ae87 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx @@ -0,0 +1,66 @@ +# Installing Postgres Enterprise Manager 8 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx new file mode 100644 index 00000000000..b45d656a466 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx @@ -0,0 +1,59 @@ +# Installing Postgres Enterprise Manager 8 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx new file mode 100644 index 00000000000..ced322b23e6 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx @@ -0,0 +1,61 @@ +# Installing Postgres Enterprise Manager 8 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + +# Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..fbe7db674e4 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx @@ -0,0 +1,80 @@ +# Installing Postgres Enterprise Manager 8 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..51608c51299 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx @@ -0,0 +1,62 @@ +# Installing Postgres Enterprise Manager 8 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + +# Install the following repository for PEM dependencies +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```` + +## Installing the Package + +```shell +yum -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..0cf7fac847f --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx @@ -0,0 +1,67 @@ +# Installing Postgres Enterprise Manager 8 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +dnf -y install edb-pem +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..d51105ca450 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx @@ -0,0 +1,72 @@ +# Installing Postgres Enterprise Manager 8 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx new file mode 100644 index 00000000000..e4ba26e3c29 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx @@ -0,0 +1,72 @@ +# Installing Postgres Enterprise Manager 8 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..769b738f8f5 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Postgres Enterprise Manager 8 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx new file mode 100644 index 00000000000..2d4ad1de4f4 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx @@ -0,0 +1,62 @@ +# Installing Postgres Enterprise Manager 8 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +zypper -n install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..8e7a4f8f42b --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,59 @@ +# Installing Postgres Enterprise Manager 8 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..dc9b8b9abb1 --- /dev/null +++ b/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,59 @@ +# Installing Postgres Enterprise Manager 8 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +# Install the following repository for PEM dependencies + +```sh +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` + +## Installing the Package + +```shell +apt-get -y install edb-pem +``` + +## Initial Configuration + +```shell +# You can configure the PEM server using the following command: + +/usr/edb/pem/bin/configure-pem-server.sh +``` + +For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/replication-manager_7_centos-7_ppc64le.mdx b/install_template/renders/replication-manager_7_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..25998b26283 --- /dev/null +++ b/install_template/renders/replication-manager_7_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Replication Manager 7 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-xdb +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_centos-7_x86_64.mdx b/install_template/renders/replication-manager_7_centos-7_x86_64.mdx new file mode 100644 index 00000000000..dd4157807cb --- /dev/null +++ b/install_template/renders/replication-manager_7_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Replication Manager 7 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-xdb +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_centos-8_x86_64.mdx b/install_template/renders/replication-manager_7_centos-8_x86_64.mdx new file mode 100644 index 00000000000..57d0b96d0dc --- /dev/null +++ b/install_template/renders/replication-manager_7_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Replication Manager 7 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_debian-10_x86_64.mdx b/install_template/renders/replication-manager_7_debian-10_x86_64.mdx new file mode 100644 index 00000000000..34af099304c --- /dev/null +++ b/install_template/renders/replication-manager_7_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Replication Manager 7 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_debian-9_x86_64.mdx b/install_template/renders/replication-manager_7_debian-9_x86_64.mdx new file mode 100644 index 00000000000..6356e1c2f4e --- /dev/null +++ b/install_template/renders/replication-manager_7_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Replication Manager 7 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-xdb +```` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx b/install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..f69dc7c2b9a --- /dev/null +++ b/install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Replication Manager 7 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-xdb +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_rhel-7_x86_64.mdx b/install_template/renders/replication-manager_7_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..b2850af8451 --- /dev/null +++ b/install_template/renders/replication-manager_7_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Replication Manager 7 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-xdb +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_rhel-8_x86_64.mdx b/install_template/renders/replication-manager_7_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..c0f8484a918 --- /dev/null +++ b/install_template/renders/replication-manager_7_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Replication Manager 7 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-xdb +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx b/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..19bf0db68ba --- /dev/null +++ b/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Replication Manager 7 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-12_x86_64.mdx b/install_template/renders/replication-manager_7_sles-12_x86_64.mdx new file mode 100644 index 00000000000..9c5a1b7a2ce --- /dev/null +++ b/install_template/renders/replication-manager_7_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Replication Manager 7 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx b/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..f328bff2ff9 --- /dev/null +++ b/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Replication Manager 7 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-15_x86_64.mdx b/install_template/renders/replication-manager_7_sles-15_x86_64.mdx new file mode 100644 index 00000000000..d38c7f821a2 --- /dev/null +++ b/install_template/renders/replication-manager_7_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Replication Manager 7 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx b/install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..acb9a0c0cf0 --- /dev/null +++ b/install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Replication Manager 7 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx b/install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..a05f6daac19 --- /dev/null +++ b/install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Replication Manager 7 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-xdb +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_11_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..eacb846630f --- /dev/null +++ b/install_template/renders/slony-replication_11_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Slony Replication 11 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_centos-7_x86_64.mdx b/install_template/renders/slony-replication_11_centos-7_x86_64.mdx new file mode 100644 index 00000000000..620b1cd9358 --- /dev/null +++ b/install_template/renders/slony-replication_11_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Slony Replication 11 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as11-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_centos-8_x86_64.mdx b/install_template/renders/slony-replication_11_centos-8_x86_64.mdx new file mode 100644 index 00000000000..8b858cb4067 --- /dev/null +++ b/install_template/renders/slony-replication_11_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Slony Replication 11 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_debian-10_x86_64.mdx b/install_template/renders/slony-replication_11_debian-10_x86_64.mdx new file mode 100644 index 00000000000..9082b41c50b --- /dev/null +++ b/install_template/renders/slony-replication_11_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 11 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_debian-9_x86_64.mdx b/install_template/renders/slony-replication_11_debian-9_x86_64.mdx new file mode 100644 index 00000000000..75d97a6ab68 --- /dev/null +++ b/install_template/renders/slony-replication_11_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Slony Replication 11 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as11-slony-replication +```` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..5c5e137f654 --- /dev/null +++ b/install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Slony Replication 11 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_11_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..c4dd81e6bda --- /dev/null +++ b/install_template/renders/slony-replication_11_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Slony Replication 11 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as11-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_11_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..1f438d5c6e4 --- /dev/null +++ b/install_template/renders/slony-replication_11_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Slony Replication 11 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as11-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..4f170913478 --- /dev/null +++ b/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 11 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-12_x86_64.mdx b/install_template/renders/slony-replication_11_sles-12_x86_64.mdx new file mode 100644 index 00000000000..fd3678543f6 --- /dev/null +++ b/install_template/renders/slony-replication_11_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 11 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..5eaff076f93 --- /dev/null +++ b/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 11 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-15_x86_64.mdx b/install_template/renders/slony-replication_11_sles-15_x86_64.mdx new file mode 100644 index 00000000000..57fb0739c1f --- /dev/null +++ b/install_template/renders/slony-replication_11_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 11 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..1a2dc924e67 --- /dev/null +++ b/install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 11 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..d936e65e454 --- /dev/null +++ b/install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 11 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as11-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_12_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..8f1573dd004 --- /dev/null +++ b/install_template/renders/slony-replication_12_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Slony Replication 12 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_centos-7_x86_64.mdx b/install_template/renders/slony-replication_12_centos-7_x86_64.mdx new file mode 100644 index 00000000000..7eda22b850d --- /dev/null +++ b/install_template/renders/slony-replication_12_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Slony Replication 12 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as12-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_centos-8_x86_64.mdx b/install_template/renders/slony-replication_12_centos-8_x86_64.mdx new file mode 100644 index 00000000000..dcdd09cb1ef --- /dev/null +++ b/install_template/renders/slony-replication_12_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Slony Replication 12 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_debian-10_x86_64.mdx b/install_template/renders/slony-replication_12_debian-10_x86_64.mdx new file mode 100644 index 00000000000..7fff1331009 --- /dev/null +++ b/install_template/renders/slony-replication_12_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 12 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_debian-9_x86_64.mdx b/install_template/renders/slony-replication_12_debian-9_x86_64.mdx new file mode 100644 index 00000000000..ec88c17de85 --- /dev/null +++ b/install_template/renders/slony-replication_12_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Slony Replication 12 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as12-slony-replication +```` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..5a337e8a1e7 --- /dev/null +++ b/install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Slony Replication 12 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_12_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..e1b03c298ed --- /dev/null +++ b/install_template/renders/slony-replication_12_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Slony Replication 12 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as12-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_12_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..6bef38c73dd --- /dev/null +++ b/install_template/renders/slony-replication_12_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Slony Replication 12 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as12-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..5792cae5fe7 --- /dev/null +++ b/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 12 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-12_x86_64.mdx b/install_template/renders/slony-replication_12_sles-12_x86_64.mdx new file mode 100644 index 00000000000..d004994ae67 --- /dev/null +++ b/install_template/renders/slony-replication_12_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 12 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..c2d348a4281 --- /dev/null +++ b/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 12 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-15_x86_64.mdx b/install_template/renders/slony-replication_12_sles-15_x86_64.mdx new file mode 100644 index 00000000000..9b02973ab3c --- /dev/null +++ b/install_template/renders/slony-replication_12_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 12 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..14fd18724b8 --- /dev/null +++ b/install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 12 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..78520a0b60f --- /dev/null +++ b/install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 12 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as12-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_13_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..b1e9e18890d --- /dev/null +++ b/install_template/renders/slony-replication_13_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Slony Replication 13 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_centos-7_x86_64.mdx b/install_template/renders/slony-replication_13_centos-7_x86_64.mdx new file mode 100644 index 00000000000..ef16352a250 --- /dev/null +++ b/install_template/renders/slony-replication_13_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Slony Replication 13 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as13-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_centos-8_x86_64.mdx b/install_template/renders/slony-replication_13_centos-8_x86_64.mdx new file mode 100644 index 00000000000..a23fb2711c1 --- /dev/null +++ b/install_template/renders/slony-replication_13_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Slony Replication 13 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_debian-10_x86_64.mdx b/install_template/renders/slony-replication_13_debian-10_x86_64.mdx new file mode 100644 index 00000000000..68a571ad877 --- /dev/null +++ b/install_template/renders/slony-replication_13_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 13 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_debian-9_x86_64.mdx b/install_template/renders/slony-replication_13_debian-9_x86_64.mdx new file mode 100644 index 00000000000..75433306891 --- /dev/null +++ b/install_template/renders/slony-replication_13_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Slony Replication 13 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as13-slony-replication +```` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..1cc0920e725 --- /dev/null +++ b/install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Slony Replication 13 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_13_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..65624a45eb3 --- /dev/null +++ b/install_template/renders/slony-replication_13_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Slony Replication 13 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as13-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_13_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..11358eefef0 --- /dev/null +++ b/install_template/renders/slony-replication_13_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Slony Replication 13 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as13-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..e2c35e8d9b1 --- /dev/null +++ b/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 13 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-12_x86_64.mdx b/install_template/renders/slony-replication_13_sles-12_x86_64.mdx new file mode 100644 index 00000000000..16824a55df9 --- /dev/null +++ b/install_template/renders/slony-replication_13_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 13 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..ffd7d6fa506 --- /dev/null +++ b/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 13 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-15_x86_64.mdx b/install_template/renders/slony-replication_13_sles-15_x86_64.mdx new file mode 100644 index 00000000000..edb0fa06374 --- /dev/null +++ b/install_template/renders/slony-replication_13_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 13 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..6395abf5762 --- /dev/null +++ b/install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 13 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..5fda90d9dbe --- /dev/null +++ b/install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 13 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as13-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_14_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..4e6a0ebb8a7 --- /dev/null +++ b/install_template/renders/slony-replication_14_centos-7_ppc64le.mdx @@ -0,0 +1,62 @@ +# Installing Slony Replication 14 on CentOS 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_centos-7_x86_64.mdx b/install_template/renders/slony-replication_14_centos-7_x86_64.mdx new file mode 100644 index 00000000000..1d5ccf3e92b --- /dev/null +++ b/install_template/renders/slony-replication_14_centos-7_x86_64.mdx @@ -0,0 +1,44 @@ +# Installing Slony Replication 14 on CentOS 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +## Installing the Package + +```shell +yum -y install edb-as14-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_centos-8_x86_64.mdx b/install_template/renders/slony-replication_14_centos-8_x86_64.mdx new file mode 100644 index 00000000000..f97da5f3b83 --- /dev/null +++ b/install_template/renders/slony-replication_14_centos-8_x86_64.mdx @@ -0,0 +1,52 @@ +# Installing Slony Replication 14 on CentOS 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install epel-release +dnf makecache +``` + +```shell +# Enable the powertools repository since EPEL packages may depend on packages from it: +dnf config-manager --set-enabled powertools +``` + +1. Disable the built-in PostgreSQL module: + + ```sh + dnf -qy module disable postgresql + ``` + +## Installing the Package + +```shell +dnf -y install edb-as14-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_debian-10_x86_64.mdx b/install_template/renders/slony-replication_14_debian-10_x86_64.mdx new file mode 100644 index 00000000000..3f53c824ddf --- /dev/null +++ b/install_template/renders/slony-replication_14_debian-10_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 14 on Debian 10 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_debian-9_x86_64.mdx b/install_template/renders/slony-replication_14_debian-9_x86_64.mdx new file mode 100644 index 00000000000..5f243a0b3d8 --- /dev/null +++ b/install_template/renders/slony-replication_14_debian-9_x86_64.mdx @@ -0,0 +1,50 @@ +# Installing Slony Replication 14 on Debian 9 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories + +```shell +echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list +``` + +This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. + +# Add support for secure APT repositories: + +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: + +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: + +apt-get update + +```` + + +## Installing the Package + + +```shell +apt-get -y install edb-as14-slony-replication +```` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx new file mode 100644 index 00000000000..fcace0b7fbc --- /dev/null +++ b/install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx @@ -0,0 +1,69 @@ +# Installing Slony Replication 14 on RHEL 7 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Install Advance Toolchain + +```shell +rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b + +cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_14_rhel-7_x86_64.mdx new file mode 100644 index 00000000000..efa0b6ae2cb --- /dev/null +++ b/install_template/renders/slony-replication_14_rhel-7_x86_64.mdx @@ -0,0 +1,51 @@ +# Installing Slony Replication 14 on RHEL 7 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm +yum makecache +``` + +````shell +# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: +subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" + + + +## Installing the Package + + +```shell +yum -y install edb-as14-slony-replication +```` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_14_rhel-8_x86_64.mdx new file mode 100644 index 00000000000..883d19c82ff --- /dev/null +++ b/install_template/renders/slony-replication_14_rhel-8_x86_64.mdx @@ -0,0 +1,53 @@ +# Installing Slony Replication 14 on RHEL 8 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Set up the EDB repository: +dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm + +# This creates the /etc/yum.repos.d/edb.repo configuration file. + +# Replace `'USERNAME:PASSWORD'` below with your username and password available from your +[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: +sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo + +# Install EPEL repository and refresh the cache: +dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm +dnf makecache +``` + +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +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 +``` + +## Installing the Package + +```shell +dnf -y install edb-as14-slony-replication +``` + +!!! Note +Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..043827737d4 --- /dev/null +++ b/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 14 on SLES 12 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-12_x86_64.mdx b/install_template/renders/slony-replication_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..0fbeca02303 --- /dev/null +++ b/install_template/renders/slony-replication_14_sles-12_x86_64.mdx @@ -0,0 +1,58 @@ +# Installing Slony Replication 14 on SLES 12 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..92bbf6498dc --- /dev/null +++ b/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 14 on SLES 15 ppc64le + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-15_x86_64.mdx b/install_template/renders/slony-replication_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..83670ea0399 --- /dev/null +++ b/install_template/renders/slony-replication_14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +# Installing Slony Replication 14 on SLES 15 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +```shell +# Install the repository configuration +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Refresh the metadata +zypper refresh + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk +``` + +## Installing the Package + +```shell +zypper -n install edb-as14-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx new file mode 100644 index 00000000000..9eadcfd7e99 --- /dev/null +++ b/install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 14 on Ubuntu 18.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-slony-replication +``` + +## Initial Configuration diff --git a/install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx new file mode 100644 index 00000000000..9623b595262 --- /dev/null +++ b/install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx @@ -0,0 +1,45 @@ +# Installing Slony Replication 14 on Ubuntu 20.04 x86_64 + +There are three steps to completing an installation: + +- Setting up the repository(#setting-up-the-repository) +- Installing the package(#installing-the-package) +- Performing the initial configuration(#initial-config) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +# Setup the EDB repository + +```shell +echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list + +# Replace '' and '' below with your username and password for the EDB repositories: +echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf + + +# Add support for secure APT repositories: +apt-get -y install apt-transport-https + +# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - + +# Update the repository meta data: +apt-get update +``` + +## Installing the Package + +```shell +apt-get -y install edb-as14-slony-replication +``` + +## Initial Configuration From fd21c7f74db949aae1167b0f86ddab16136d055f Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Mon, 14 Feb 2022 18:59:50 +0530 Subject: [PATCH 013/180] Done changes related to SLES12 and generated the files Done changes related to SLES12 and generated the files --- .../renders/edb*plus_11_sles-12_ppc64le.mdx | 13 ++----------- .../renders/edb*plus_11_sles-12_x86_64.mdx | 9 --------- .../renders/edb*plus_11_sles-15_ppc64le.mdx | 2 +- .../renders/edb*plus_12_sles-12_ppc64le.mdx | 13 ++----------- .../renders/edb*plus_12_sles-12_x86_64.mdx | 9 --------- .../renders/edb*plus_12_sles-15_ppc64le.mdx | 2 +- .../renders/edb*plus_13_sles-12_ppc64le.mdx | 13 ++----------- .../renders/edb*plus_13_sles-12_x86_64.mdx | 9 --------- .../renders/edb*plus_13_sles-15_ppc64le.mdx | 2 +- .../renders/edb*plus_14_sles-12_ppc64le.mdx | 13 ++----------- .../renders/edb*plus_14_sles-12_x86_64.mdx | 9 --------- .../renders/edb*plus_14_sles-15_ppc64le.mdx | 2 +- .../renders/edb*plus_9.6_sles-12_ppc64le.mdx | 13 ++----------- .../renders/edb*plus_9.6_sles-12_x86_64.mdx | 9 --------- .../renders/edb*plus_9.6_sles-15_ppc64le.mdx | 2 +- .../renders/edb-bart_2.6_sles-12_ppc64le.mdx | 13 ++----------- .../renders/edb-bart_2.6_sles-12_x86_64.mdx | 9 --------- .../renders/edb-bart_2.6_sles-15_ppc64le.mdx | 2 +- ...b-jdbc-connector_42.x.x_sles-12_ppc64le.mdx | 13 ++----------- ...db-jdbc-connector_42.x.x_sles-12_x86_64.mdx | 9 --------- ...b-jdbc-connector_42.x.x_sles-15_ppc64le.mdx | 2 +- ...edb-migrationtoolkit_54_sles-12_ppc64le.mdx | 13 ++----------- .../edb-migrationtoolkit_54_sles-12_x86_64.mdx | 9 --------- ...edb-migrationtoolkit_54_sles-15_ppc64le.mdx | 2 +- ...edb-migrationtoolkit_55_sles-12_ppc64le.mdx | 13 ++----------- .../edb-migrationtoolkit_55_sles-12_x86_64.mdx | 9 --------- ...edb-migrationtoolkit_55_sles-15_ppc64le.mdx | 2 +- ...-oci-connector_14.1.0.1_sles-12_ppc64le.mdx | 13 ++----------- ...b-oci-connector_14.1.0.1_sles-12_x86_64.mdx | 9 --------- ...-oci-connector_14.1.0.1_sles-15_ppc64le.mdx | 2 +- ...odbc-connector_13.1.0.2_sles-12_ppc64le.mdx | 13 ++----------- ...-odbc-connector_13.1.0.2_sles-12_x86_64.mdx | 9 --------- ...odbc-connector_13.1.0.2_sles-15_ppc64le.mdx | 2 +- .../edb-pgbouncer_1.14_sles-12_ppc64le.mdx | 13 ++----------- .../edb-pgbouncer_1.14_sles-12_x86_64.mdx | 9 --------- .../edb-pgbouncer_1.14_sles-15_ppc64le.mdx | 2 +- .../edb-pgbouncer_1.15_sles-12_ppc64le.mdx | 13 ++----------- .../edb-pgbouncer_1.15_sles-12_x86_64.mdx | 9 --------- .../edb-pgbouncer_1.15_sles-15_ppc64le.mdx | 2 +- .../edb-pgbouncer_1.16_sles-12_ppc64le.mdx | 13 ++----------- .../edb-pgbouncer_1.16_sles-12_x86_64.mdx | 9 --------- .../edb-pgbouncer_1.16_sles-15_ppc64le.mdx | 2 +- .../edb-pgpoolii_4.1_sles-12_ppc64le.mdx | 13 ++----------- .../edb-pgpoolii_4.1_sles-12_x86_64.mdx | 9 --------- .../edb-pgpoolii_4.1_sles-15_ppc64le.mdx | 2 +- .../edb-pgpoolii_4.2_sles-12_ppc64le.mdx | 13 ++----------- .../edb-pgpoolii_4.2_sles-12_x86_64.mdx | 9 --------- .../edb-pgpoolii_4.2_sles-15_ppc64le.mdx | 2 +- .../edb-pgpoolii_4.3_sles-12_ppc64le.mdx | 13 ++----------- .../edb-pgpoolii_4.3_sles-12_x86_64.mdx | 9 --------- .../edb-pgpoolii_4.3_sles-15_ppc64le.mdx | 2 +- .../renders/edb-pgpoolii_4_sles-12_ppc64le.mdx | 13 ++----------- .../renders/edb-pgpoolii_4_sles-12_x86_64.mdx | 9 --------- .../renders/edb-pgpoolii_4_sles-15_ppc64le.mdx | 2 +- ...gres-advanced-server_11_sles-12_ppc64le.mdx | 13 ++----------- ...tgres-advanced-server_11_sles-12_x86_64.mdx | 9 --------- ...gres-advanced-server_11_sles-15_ppc64le.mdx | 2 +- ...gres-advanced-server_12_sles-12_ppc64le.mdx | 13 ++----------- ...tgres-advanced-server_12_sles-12_x86_64.mdx | 9 --------- ...gres-advanced-server_12_sles-15_ppc64le.mdx | 2 +- ...gres-advanced-server_13_sles-12_ppc64le.mdx | 13 ++----------- ...tgres-advanced-server_13_sles-12_x86_64.mdx | 9 --------- ...gres-advanced-server_13_sles-15_ppc64le.mdx | 2 +- ...gres-advanced-server_14_sles-12_ppc64le.mdx | 13 ++----------- ...tgres-advanced-server_14_sles-12_x86_64.mdx | 9 --------- ...gres-advanced-server_14_sles-15_ppc64le.mdx | 2 +- ...res-advanced-server_9.6_sles-12_ppc64le.mdx | 13 ++----------- ...gres-advanced-server_9.6_sles-12_x86_64.mdx | 9 --------- ...res-advanced-server_9.6_sles-15_ppc64le.mdx | 2 +- .../failover-manager_3.1_sles-12_ppc64le.mdx | 13 ++----------- .../failover-manager_3.1_sles-12_x86_64.mdx | 9 --------- .../failover-manager_3.1_sles-15_ppc64le.mdx | 2 +- .../failover-manager_4.1_sles-12_ppc64le.mdx | 13 ++----------- .../failover-manager_4.1_sles-12_x86_64.mdx | 9 --------- .../failover-manager_4.1_sles-15_ppc64le.mdx | 2 +- .../failover-manager_4.2_sles-12_ppc64le.mdx | 13 ++----------- .../failover-manager_4.2_sles-12_x86_64.mdx | 9 --------- .../failover-manager_4.2_sles-15_ppc64le.mdx | 2 +- .../failover-manager_4.3_sles-12_ppc64le.mdx | 13 ++----------- .../failover-manager_4.3_sles-12_x86_64.mdx | 9 --------- .../failover-manager_4.3_sles-15_ppc64le.mdx | 2 +- .../failover-manager_4.4_sles-12_ppc64le.mdx | 13 ++----------- .../failover-manager_4.4_sles-12_x86_64.mdx | 9 --------- .../failover-manager_4.4_sles-15_ppc64le.mdx | 2 +- .../failover-manager_4_sles-12_ppc64le.mdx | 13 ++----------- .../failover-manager_4_sles-12_x86_64.mdx | 9 --------- .../failover-manager_4_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_11_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_11_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_11_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_12_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_12_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_12_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_13_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_13_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_13_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_14_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_14_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_14_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_11_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_11_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_11_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_12_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_12_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_12_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_13_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_13_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_13_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_14_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_14_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_14_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_11_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_11_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_11_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_12_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_12_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_12_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_13_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_13_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_13_sles-15_ppc64le.mdx | 2 +- ...foreign-data-wrapper_14_sles-12_ppc64le.mdx | 13 ++----------- ...-foreign-data-wrapper_14_sles-12_x86_64.mdx | 9 --------- ...foreign-data-wrapper_14_sles-15_ppc64le.mdx | 2 +- .../renders/postgis_11_sles-12_ppc64le.mdx | 13 ++----------- .../renders/postgis_11_sles-12_x86_64.mdx | 9 --------- .../renders/postgis_11_sles-15_ppc64le.mdx | 2 +- .../renders/postgis_12_sles-12_ppc64le.mdx | 13 ++----------- .../renders/postgis_12_sles-12_x86_64.mdx | 9 --------- .../renders/postgis_12_sles-15_ppc64le.mdx | 2 +- .../renders/postgis_13_sles-12_ppc64le.mdx | 13 ++----------- .../renders/postgis_13_sles-12_x86_64.mdx | 9 --------- .../renders/postgis_13_sles-15_ppc64le.mdx | 2 +- .../renders/postgis_14_sles-12_ppc64le.mdx | 13 ++----------- .../renders/postgis_14_sles-12_x86_64.mdx | 9 --------- .../renders/postgis_14_sles-15_ppc64le.mdx | 2 +- ...s-enterprise-manager_7_centos-7_ppc64le.mdx | 7 ------- ...es-enterprise-manager_7_centos-7_x86_64.mdx | 7 ------- ...es-enterprise-manager_7_centos-8_x86_64.mdx | 7 ------- ...s-enterprise-manager_7_debian-10_x86_64.mdx | 7 ------- ...es-enterprise-manager_7_debian-9_x86_64.mdx | 8 ++------ ...res-enterprise-manager_7_rhel-7_ppc64le.mdx | 8 ++------ ...gres-enterprise-manager_7_rhel-7_x86_64.mdx | 8 ++------ ...gres-enterprise-manager_7_rhel-8_x86_64.mdx | 7 ------- ...es-enterprise-manager_7_sles-12_ppc64le.mdx | 18 ++++-------------- ...res-enterprise-manager_7_sles-12_x86_64.mdx | 14 ++------------ ...es-enterprise-manager_7_sles-15_ppc64le.mdx | 5 ++--- ...res-enterprise-manager_7_sles-15_x86_64.mdx | 3 +-- ...nterprise-manager_7_ubuntu-18.04_x86_64.mdx | 7 ------- ...nterprise-manager_7_ubuntu-20.04_x86_64.mdx | 7 ------- ...s-enterprise-manager_8_centos-7_ppc64le.mdx | 7 ------- ...es-enterprise-manager_8_centos-7_x86_64.mdx | 7 ------- ...es-enterprise-manager_8_centos-8_x86_64.mdx | 7 ------- ...s-enterprise-manager_8_debian-10_x86_64.mdx | 7 ------- ...es-enterprise-manager_8_debian-9_x86_64.mdx | 8 ++------ ...res-enterprise-manager_8_rhel-7_ppc64le.mdx | 8 ++------ ...gres-enterprise-manager_8_rhel-7_x86_64.mdx | 8 ++------ ...gres-enterprise-manager_8_rhel-8_x86_64.mdx | 7 ------- ...es-enterprise-manager_8_sles-12_ppc64le.mdx | 18 ++++-------------- ...res-enterprise-manager_8_sles-12_x86_64.mdx | 14 ++------------ ...es-enterprise-manager_8_sles-15_ppc64le.mdx | 5 ++--- ...res-enterprise-manager_8_sles-15_x86_64.mdx | 3 +-- ...nterprise-manager_8_ubuntu-18.04_x86_64.mdx | 7 ------- ...nterprise-manager_8_ubuntu-20.04_x86_64.mdx | 7 ------- .../replication-manager_7_sles-12_ppc64le.mdx | 13 ++----------- .../replication-manager_7_sles-12_x86_64.mdx | 9 --------- .../replication-manager_7_sles-15_ppc64le.mdx | 2 +- .../slony-replication_11_sles-12_ppc64le.mdx | 13 ++----------- .../slony-replication_11_sles-12_x86_64.mdx | 9 --------- .../slony-replication_11_sles-15_ppc64le.mdx | 2 +- .../slony-replication_12_sles-12_ppc64le.mdx | 13 ++----------- .../slony-replication_12_sles-12_x86_64.mdx | 9 --------- .../slony-replication_12_sles-15_ppc64le.mdx | 2 +- .../slony-replication_13_sles-12_ppc64le.mdx | 13 ++----------- .../slony-replication_13_sles-12_x86_64.mdx | 9 --------- .../slony-replication_13_sles-15_ppc64le.mdx | 2 +- .../slony-replication_14_sles-12_ppc64le.mdx | 13 ++----------- .../slony-replication_14_sles-12_x86_64.mdx | 9 --------- .../slony-replication_14_sles-15_ppc64le.mdx | 2 +- .../templates/platformBase/sles-12.njk | 14 +++----------- .../templates/platformBase/sles-15.njk | 2 +- .../postgres-enterprise-manager/base.njk | 8 -------- .../postgres-enterprise-manager/sles-12.njk | 9 ++++++++- .../sles-12_ppc64le.njk | 9 +++++++++ .../postgres-enterprise-manager/sles-15.njk | 13 ++++++++++++- .../sles-15_ppc64le.njk | 9 ++++++++- 185 files changed, 221 insertions(+), 1269 deletions(-) create mode 100644 install_template/templates/products/postgres-enterprise-manager/sles-12_ppc64le.njk diff --git a/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx index a91d3ccc6a7..b210dd0c834 100644 --- a/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx +++ b/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_11_sles-12_x86_64.mdx b/install_template/renders/edb*plus_11_sles-12_x86_64.mdx index 6cec0d6b581..1a273740cba 100644 --- a/install_template/renders/edb*plus_11_sles-12_x86_64.mdx +++ b/install_template/renders/edb*plus_11_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx index 41408c2aeae..58798852e0b 100644 --- a/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx +++ b/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx index 6920b011008..56acba4e42d 100644 --- a/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx +++ b/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_12_sles-12_x86_64.mdx b/install_template/renders/edb*plus_12_sles-12_x86_64.mdx index 971ac22109a..34de8e55afc 100644 --- a/install_template/renders/edb*plus_12_sles-12_x86_64.mdx +++ b/install_template/renders/edb*plus_12_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx index 8d9f547481c..afe15088180 100644 --- a/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx +++ b/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx index 4ba1090cf70..06f63d38e67 100644 --- a/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx +++ b/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_13_sles-12_x86_64.mdx b/install_template/renders/edb*plus_13_sles-12_x86_64.mdx index c0271f2c3af..414be764736 100644 --- a/install_template/renders/edb*plus_13_sles-12_x86_64.mdx +++ b/install_template/renders/edb*plus_13_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx index 73502e0928a..7f9f9973aa5 100644 --- a/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx +++ b/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx index 5b2409b2d2f..f400a621bfa 100644 --- a/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx +++ b/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_14_sles-12_x86_64.mdx b/install_template/renders/edb*plus_14_sles-12_x86_64.mdx index ea320322f60..b23758994bd 100644 --- a/install_template/renders/edb*plus_14_sles-12_x86_64.mdx +++ b/install_template/renders/edb*plus_14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx index f2e18d37438..a2807e37dd0 100644 --- a/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx +++ b/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx index 171a054a46a..29c34778d92 100644 --- a/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx +++ b/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx b/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx index 113cca054cd..4164645644e 100644 --- a/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx +++ b/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx index 1be2d6e5d19..a413d6352b3 100644 --- a/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx +++ b/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx b/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx index 8f61bb34c26..7a19ae2689e 100644 --- a/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx b/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx index 5109ad5bdeb..2d78cd7da19 100644 --- a/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx +++ b/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx b/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx index 4343f599a7f..72ac10e87b7 100644 --- a/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx index 9588002ff8d..83a2e6678f3 100644 --- a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx index a59477c911c..e538ac5b784 100644 --- a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx +++ b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx index 85ba22479cf..dcc27b7e27b 100644 --- a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx index 495a52e04ac..312e45920a7 100644 --- a/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx index f3d5cf21501..ee1de933b47 100644 --- a/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx +++ b/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx index 51a96a1877a..ae69ef26572 100644 --- a/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx index fc535080509..d36ce193d8f 100644 --- a/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx index 00463123ad7..737f7407505 100644 --- a/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx +++ b/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx index a9280907c93..84a6cee36ab 100644 --- a/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx index 0ebaf0025e7..cea3562c84a 100644 --- a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx index 7f5e09cd140..6a2f517fa0c 100644 --- a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx +++ b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx index 89ba8f73774..787da3dee2b 100644 --- a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx index 08b11331cd6..2d7ad0771e4 100644 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx index 8db53f789ab..dcf5b7071a0 100644 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx index 8e74b4860f1..2d99290e699 100644 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx index 57b2dd7bc67..ce06266811c 100644 --- a/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx index a8d3ad0a68e..b2825db3359 100644 --- a/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx index db12feb86d6..2e5fcf19f56 100644 --- a/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx index 21dc7e9f9c0..abf238b9b58 100644 --- a/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx index 1b65dbbfa05..9ac8036ca29 100644 --- a/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx index a7d1bab8a76..c2f15341ece 100644 --- a/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx index 1e15d417191..ab2dd24cb49 100644 --- a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx index 930b3a1d022..b7bd7a23558 100644 --- a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx index cbaed7c28dc..85b1eaa5f96 100644 --- a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx index a4a69eec237..c62b24d9c5c 100644 --- a/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx index 6d20ab32cdc..4a79157854a 100644 --- a/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx index 91719477d83..c2f3310d222 100644 --- a/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx index 8cfc76bd3c1..7eef53f45ea 100644 --- a/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx index 118b621103e..ef80fe3a40f 100644 --- a/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx index b27ae5062cb..aa3dfcf10c8 100644 --- a/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx index 499a0b94446..31287ca9067 100644 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx index ceed898ace3..fd76673aa04 100644 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx index dfe3ab43887..e054b05c2be 100644 --- a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx index e34336f3db2..5bab2ad9c95 100644 --- a/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx index a61fb9430da..323be9fcdb6 100644 --- a/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx index c177dc9a1cb..1b8228d13a8 100644 --- a/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx index e156538a97b..749f6447b34 100644 --- a/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx index 578be3706c8..58f8e8a56ac 100644 --- a/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx +++ b/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx index 14a453603a1..b23a3dc7ca4 100644 --- a/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx index 5e87882d4cf..0a1ea4d9bd7 100644 --- a/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx index 128e9130906..b874e3f24e4 100644 --- a/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx +++ b/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx index 71a74a6132e..18e51f02911 100644 --- a/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx index 251c55c74d0..a514a43f9d9 100644 --- a/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx index a35b4f08b50..32992d63526 100644 --- a/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx +++ b/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx index 293f1280893..52d60388def 100644 --- a/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx index 35d3a22b408..727428ce4c7 100644 --- a/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx index c1c8537882a..54e8ea5cbc0 100644 --- a/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx +++ b/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx index 8525e23ad57..0905764be84 100644 --- a/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx index 9d9967f33c9..ce895c0629d 100644 --- a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx index a57024eae35..cbe07b6dd7d 100644 --- a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx +++ b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx index 9b4899aefee..f8ba8391105 100644 --- a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx index c2d013e477d..98d7e154ff7 100644 --- a/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx b/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx index 779e10e1f16..fc32384c5a0 100644 --- a/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx index f85aaa8738f..0454b2eb767 100644 --- a/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx index 2d8fbd55fc0..698566c37c2 100644 --- a/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx index 41cf188e60f..baf6298a82e 100644 --- a/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx index ffdcee46812..029cd12aec3 100644 --- a/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx index e5caecfc3e2..ada58639089 100644 --- a/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx index 79e2b61ae10..07e70950dbc 100644 --- a/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx index ca478564b1e..3e38b46769e 100644 --- a/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx index 51eff5167af..87ba58e15d9 100644 --- a/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx index b71d49de4e2..d4ac4b8718f 100644 --- a/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx index bd92810dd96..c9a8fb21a7e 100644 --- a/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index 63b5918d505..4b593169bf0 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index c47a13c80d0..839aec263f3 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index 646765ef6c9..53310d7382e 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx index 32d4f1d741e..ba5376d3a3a 100644 --- a/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/failover-manager_4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4_sles-12_x86_64.mdx index a46f1249568..31b07d35ca7 100644 --- a/install_template/renders/failover-manager_4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx index 996d0652e07..a40325fac57 100644 --- a/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx index d999e83b580..27705622eff 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx index 321acba641d..53a51dbd25d 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx index 89be0bf1b40..9f682968d23 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx index ffadcb595b2..c1c4353efbb 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx index ef64729548e..a11c485e151 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx index 29fe868ee81..eef2b6af1c3 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx index b4358108fa0..299be05fcb1 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx index c4cf6a3ff1a..811eba778d6 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx index 7474faa1ae5..a6c69fb4b0b 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx index ac3b97de2a9..6862e686092 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx index 63f353e7c54..9a9246bbe4f 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx index ef9cc76fd3c..a2d063679ed 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx index 1b61a383576..ee7bf1fcc2b 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx index aebcb454922..941a4590bef 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx index e72b6ea9678..08b89f91751 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx index 74ba24ef9bb..6cd31f24766 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx index 2b352e6d2c6..3fbdf66336c 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx index 503c1768616..bfb18997602 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx index 6170e6e4530..e9a0c3cea92 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx index 211174b6f76..cbebf5361d7 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx index 97b1774c169..92d2abf5d32 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx index 2360ba8b61f..7ac17dbba76 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx index 2b747f32078..28c8f184582 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx index 88abf399ed6..38bc00be37a 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx index 1a44b24cbb4..7257df7f75d 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx index ffca188e4e9..707a110fb74 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx index 43b883ee393..d7f36a26f46 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx index 9eb2f195de8..b9fa7381dd7 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx index d5ced00a989..cabd42020b7 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx index ec9f96d2d59..36e77e04843 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx index 1ef7edc936c..14d554f2d52 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx index ff286f178d9..faa620d385d 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx index cbadf5a11b9..0fd66f37470 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx index d13ed8323b5..9fd76889aa7 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx index e5b00a226c8..dff18f1458d 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx index 02c8ae55aac..b2d8b342158 100644 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_11_sles-12_ppc64le.mdx b/install_template/renders/postgis_11_sles-12_ppc64le.mdx index ec7bc892dc3..ceaaccac88a 100644 --- a/install_template/renders/postgis_11_sles-12_ppc64le.mdx +++ b/install_template/renders/postgis_11_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_11_sles-12_x86_64.mdx b/install_template/renders/postgis_11_sles-12_x86_64.mdx index 5dfdece6289..c71387ba362 100644 --- a/install_template/renders/postgis_11_sles-12_x86_64.mdx +++ b/install_template/renders/postgis_11_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/postgis_11_sles-15_ppc64le.mdx b/install_template/renders/postgis_11_sles-15_ppc64le.mdx index 9cc131d7524..34ff278b9e5 100644 --- a/install_template/renders/postgis_11_sles-15_ppc64le.mdx +++ b/install_template/renders/postgis_11_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_12_sles-12_ppc64le.mdx b/install_template/renders/postgis_12_sles-12_ppc64le.mdx index 7cbce47f685..5bc5f759172 100644 --- a/install_template/renders/postgis_12_sles-12_ppc64le.mdx +++ b/install_template/renders/postgis_12_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_12_sles-12_x86_64.mdx b/install_template/renders/postgis_12_sles-12_x86_64.mdx index ae4e3e500da..487e8e9800f 100644 --- a/install_template/renders/postgis_12_sles-12_x86_64.mdx +++ b/install_template/renders/postgis_12_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/postgis_12_sles-15_ppc64le.mdx b/install_template/renders/postgis_12_sles-15_ppc64le.mdx index 515caed277d..8a575d5b584 100644 --- a/install_template/renders/postgis_12_sles-15_ppc64le.mdx +++ b/install_template/renders/postgis_12_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_13_sles-12_ppc64le.mdx b/install_template/renders/postgis_13_sles-12_ppc64le.mdx index 9f6944fab06..f835f066455 100644 --- a/install_template/renders/postgis_13_sles-12_ppc64le.mdx +++ b/install_template/renders/postgis_13_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_13_sles-12_x86_64.mdx b/install_template/renders/postgis_13_sles-12_x86_64.mdx index b5409a3f5f0..606fdaf1483 100644 --- a/install_template/renders/postgis_13_sles-12_x86_64.mdx +++ b/install_template/renders/postgis_13_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/postgis_13_sles-15_ppc64le.mdx b/install_template/renders/postgis_13_sles-15_ppc64le.mdx index 4be491b9488..5e1bf30f4b5 100644 --- a/install_template/renders/postgis_13_sles-15_ppc64le.mdx +++ b/install_template/renders/postgis_13_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_14_sles-12_ppc64le.mdx b/install_template/renders/postgis_14_sles-12_ppc64le.mdx index 9f6ea0b1051..fbb3155d747 100644 --- a/install_template/renders/postgis_14_sles-12_ppc64le.mdx +++ b/install_template/renders/postgis_14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgis_14_sles-12_x86_64.mdx b/install_template/renders/postgis_14_sles-12_x86_64.mdx index 945ae034e19..b1df2952500 100644 --- a/install_template/renders/postgis_14_sles-12_x86_64.mdx +++ b/install_template/renders/postgis_14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/postgis_14_sles-15_ppc64le.mdx b/install_template/renders/postgis_14_sles-15_ppc64le.mdx index afc3501ce81..8dff301d531 100644 --- a/install_template/renders/postgis_14_sles-15_ppc64le.mdx +++ b/install_template/renders/postgis_14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx index 3d6382ee8e3..b783dc72203 100644 --- a/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx @@ -50,12 +50,6 @@ yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarc yum makecache ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -69,7 +63,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx index 5696d1211da..34d6f08dad7 100644 --- a/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx @@ -32,12 +32,6 @@ yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarc yum makecache ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -51,7 +45,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx index ffe07e9122d..4cbe72ef8b2 100644 --- a/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx @@ -37,12 +37,6 @@ dnf makecache dnf config-manager --set-enabled powertools ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - 1. Disable the built-in PostgreSQL module: ```sh @@ -59,7 +53,6 @@ dnf -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx index f3a0c87095a..fe9d7d7e577 100644 --- a/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx @@ -36,12 +36,6 @@ wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key apt-get update ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -52,7 +46,6 @@ apt-get -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx index c56c42b223c..64fd2358b6f 100644 --- a/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx @@ -39,22 +39,18 @@ apt-get update ```` -# Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -```` ## Installing the Package + ```shell apt-get -y install edb-pem -``` +```` ## Initial Configuration ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx index 716ed8c7052..bfdbbd9b22e 100644 --- a/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx @@ -55,16 +55,13 @@ yum makecache subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" -# Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -```` ## Installing the Package + ```shell yum -y install edb-pem -``` +```` !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. @@ -73,7 +70,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx index fb281daedae..d6a7cbb696f 100644 --- a/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx @@ -37,16 +37,13 @@ yum makecache subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" -# Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -```` ## Installing the Package + ```shell yum -y install edb-pem -``` +```` !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. @@ -55,7 +52,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx index d7918917f7c..d505ae456c2 100644 --- a/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx @@ -41,12 +41,6 @@ subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" dnf -qy module disable postgresql ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -60,7 +54,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx index 53b3ad10f25..26b3a1628a1 100644 --- a/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh @@ -51,8 +42,8 @@ zypper -n install java-1_8_0-openjdk # Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo ``` ## Installing the Package @@ -65,7 +56,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx index bf9f69435bc..d128d4bbbc1 100644 --- a/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx @@ -36,23 +36,14 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` # Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo ``` ## Installing the Package @@ -65,7 +56,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx index 44164c86f6b..4ade69ace5f 100644 --- a/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh @@ -41,7 +41,7 @@ zypper -n install java-11-openjdk # Install the following repository for PEM dependencies -```sh +```shell zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo ``` @@ -55,7 +55,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx index b6e85134cf2..10750c6b33e 100644 --- a/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx @@ -41,7 +41,7 @@ zypper -n install java-11-openjdk # Install the following repository for PEM dependencies -```sh +```shell zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo ``` @@ -55,7 +55,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx index cd02116f95a..fcb836205b2 100644 --- a/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx @@ -36,12 +36,6 @@ wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key apt-get update ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -52,7 +46,6 @@ apt-get -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx index a84e656a8fe..f7ce6d95424 100644 --- a/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx @@ -36,12 +36,6 @@ wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key apt-get update ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -52,7 +46,6 @@ apt-get -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx index 01bdc69a52b..a18e6ff16c0 100644 --- a/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx @@ -50,12 +50,6 @@ yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarc yum makecache ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -69,7 +63,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx index 21e7a54d69f..9dc86548a4f 100644 --- a/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx @@ -32,12 +32,6 @@ yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarc yum makecache ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -51,7 +45,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx index ef24674ae87..d7178fa4ebd 100644 --- a/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx @@ -37,12 +37,6 @@ dnf makecache dnf config-manager --set-enabled powertools ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - 1. Disable the built-in PostgreSQL module: ```sh @@ -59,7 +53,6 @@ dnf -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx index b45d656a466..dbc24a1617d 100644 --- a/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx @@ -36,12 +36,6 @@ wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key apt-get update ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -52,7 +46,6 @@ apt-get -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx index ced322b23e6..4819db27701 100644 --- a/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx @@ -39,22 +39,18 @@ apt-get update ```` -# Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -```` ## Installing the Package + ```shell apt-get -y install edb-pem -``` +```` ## Initial Configuration ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx index fbe7db674e4..c958bbf75ef 100644 --- a/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx @@ -55,16 +55,13 @@ yum makecache subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" -# Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -```` ## Installing the Package + ```shell yum -y install edb-pem -``` +```` !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. @@ -73,7 +70,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx index 51608c51299..ffdb44a6751 100644 --- a/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx @@ -37,16 +37,13 @@ yum makecache subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" -# Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -```` ## Installing the Package + ```shell yum -y install edb-pem -``` +```` !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. @@ -55,7 +52,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx index 0cf7fac847f..9f238219946 100644 --- a/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx @@ -41,12 +41,6 @@ subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" dnf -qy module disable postgresql ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -60,7 +54,6 @@ Once the edb repository is set up, you can install any of the EDB products by us ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx index d51105ca450..f29392bf137 100644 --- a/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh @@ -51,8 +42,8 @@ zypper -n install java-1_8_0-openjdk # Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo ``` ## Installing the Package @@ -65,7 +56,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx index e4ba26e3c29..cfa63b8d794 100644 --- a/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx @@ -36,23 +36,14 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` # Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo ``` ## Installing the Package @@ -65,7 +56,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx index 769b738f8f5..34018a1cb04 100644 --- a/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh @@ -41,7 +41,7 @@ zypper -n install java-11-openjdk # Install the following repository for PEM dependencies -```sh +```shell zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo ``` @@ -55,7 +55,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx index 2d4ad1de4f4..d10cb900d82 100644 --- a/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx @@ -41,7 +41,7 @@ zypper -n install java-11-openjdk # Install the following repository for PEM dependencies -```sh +```shell zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo ``` @@ -55,7 +55,6 @@ zypper -n install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx index 8e7a4f8f42b..852ac2f2c57 100644 --- a/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx @@ -36,12 +36,6 @@ wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key apt-get update ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -52,7 +46,6 @@ apt-get -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx index dc9b8b9abb1..321068fd2c3 100644 --- a/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx +++ b/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx @@ -36,12 +36,6 @@ wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key apt-get update ``` -# Install the following repository for PEM dependencies - -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - ## Installing the Package ```shell @@ -52,7 +46,6 @@ apt-get -y install edb-pem ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx b/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx index 19bf0db68ba..73c73b65a3d 100644 --- a/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx +++ b/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/replication-manager_7_sles-12_x86_64.mdx b/install_template/renders/replication-manager_7_sles-12_x86_64.mdx index 9c5a1b7a2ce..702fb5098f6 100644 --- a/install_template/renders/replication-manager_7_sles-12_x86_64.mdx +++ b/install_template/renders/replication-manager_7_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx b/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx index f328bff2ff9..566316013cf 100644 --- a/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx +++ b/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx index 4f170913478..f4ceed0a5b4 100644 --- a/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx +++ b/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_11_sles-12_x86_64.mdx b/install_template/renders/slony-replication_11_sles-12_x86_64.mdx index fd3678543f6..7f3235e6d50 100644 --- a/install_template/renders/slony-replication_11_sles-12_x86_64.mdx +++ b/install_template/renders/slony-replication_11_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx index 5eaff076f93..861da2cf64f 100644 --- a/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx +++ b/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx index 5792cae5fe7..e6610b9bae9 100644 --- a/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx +++ b/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_12_sles-12_x86_64.mdx b/install_template/renders/slony-replication_12_sles-12_x86_64.mdx index d004994ae67..4098d167c4a 100644 --- a/install_template/renders/slony-replication_12_sles-12_x86_64.mdx +++ b/install_template/renders/slony-replication_12_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx index c2d348a4281..7d99fbacf1b 100644 --- a/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx +++ b/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx index e2c35e8d9b1..0b96ecfec46 100644 --- a/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx +++ b/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_13_sles-12_x86_64.mdx b/install_template/renders/slony-replication_13_sles-12_x86_64.mdx index 16824a55df9..6e024708fa9 100644 --- a/install_template/renders/slony-replication_13_sles-12_x86_64.mdx +++ b/install_template/renders/slony-replication_13_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx index ffd7d6fa506..7b72c7b5842 100644 --- a/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx +++ b/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx index 043827737d4..261f997b286 100644 --- a/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx +++ b/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx @@ -30,17 +30,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/renders/slony-replication_14_sles-12_x86_64.mdx b/install_template/renders/slony-replication_14_sles-12_x86_64.mdx index 0fbeca02303..c605de9fd94 100644 --- a/install_template/renders/slony-replication_14_sles-12_x86_64.mdx +++ b/install_template/renders/slony-replication_14_sles-12_x86_64.mdx @@ -36,15 +36,6 @@ SUSEConnect -p sle-sdk/12.5/x86_64 # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo - -# Refresh the metadata -zypper refresh - # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` diff --git a/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx index 92bbf6498dc..979b026714b 100644 --- a/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx +++ b/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx @@ -30,7 +30,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata zypper refresh diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index f01f00208e8..8430a65a2a8 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -13,17 +13,8 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP4/Apache:Modules.repo +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} # Refresh the metadata zypper refresh @@ -31,6 +22,7 @@ zypper refresh # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` + {% endblock prerequisites %} {% block installCommand %} ```shell diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index e39e752be57..26565bcb721 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -13,7 +13,7 @@ zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 +SUSEConnect -p PackageHub/15.3/{{ platform.arch }} # Refresh the metadata zypper refresh diff --git a/install_template/templates/products/postgres-enterprise-manager/base.njk b/install_template/templates/products/postgres-enterprise-manager/base.njk index 13a26f4066d..de94314fc55 100644 --- a/install_template/templates/products/postgres-enterprise-manager/base.njk +++ b/install_template/templates/products/postgres-enterprise-manager/base.njk @@ -1,16 +1,8 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-pem{% endset %} -{% block prerequisites %} -{{ super() }} -# Install the following repository for PEM dependencies -```sh -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` -{% endblock prerequisites %} {% block postinstall %} ```shell # You can configure the PEM server using the following command: - /usr/edb/pem/bin/configure-pem-server.sh ``` diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-12.njk b/install_template/templates/products/postgres-enterprise-manager/sles-12.njk index 516c2513fdb..6badf7f8103 100644 --- a/install_template/templates/products/postgres-enterprise-manager/sles-12.njk +++ b/install_template/templates/products/postgres-enterprise-manager/sles-12.njk @@ -1,2 +1,9 @@ {% extends "products/postgres-enterprise-manager/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +{{ super() }} +# Install the following repository for PEM dependencies +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo +``` +{% endblock prerequisites %} diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-12_ppc64le.njk b/install_template/templates/products/postgres-enterprise-manager/sles-12_ppc64le.njk new file mode 100644 index 00000000000..6badf7f8103 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/sles-12_ppc64le.njk @@ -0,0 +1,9 @@ +{% extends "products/postgres-enterprise-manager/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +{{ super() }} +# Install the following repository for PEM dependencies +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo +``` +{% endblock prerequisites %} diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-15.njk b/install_template/templates/products/postgres-enterprise-manager/sles-15.njk index 11b4376209f..36a80fa8d42 100644 --- a/install_template/templates/products/postgres-enterprise-manager/sles-15.njk +++ b/install_template/templates/products/postgres-enterprise-manager/sles-15.njk @@ -1,2 +1,13 @@ {% extends "products/postgres-enterprise-manager/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-15" %} +{% block prerequisites %} +{{ super() }} +# Install the following repository for PEM dependencies +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` +{% endblock prerequisites %} + + +# Install the following repository for PEM dependencies +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk b/install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk index 05f8a505bba..5ea544029dc 100644 --- a/install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk +++ b/install_template/templates/products/postgres-enterprise-manager/sles-15_ppc64le.njk @@ -1,3 +1,10 @@ {% extends "products/postgres-enterprise-manager/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} \ No newline at end of file +{% set includePPC = true %} +{% block prerequisites %} +{{ super() }} +# Install the following repository for PEM dependencies +```shell +zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo +``` +{% endblock prerequisites %} From 9dbb04c13c51ad04e3ae8682a4d5a24fe5b31d30 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Mon, 14 Feb 2022 19:22:55 +0530 Subject: [PATCH 014/180] Minor edits done Minor edits done --- .../products/postgres-enterprise-manager/sles-15.njk | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/install_template/templates/products/postgres-enterprise-manager/sles-15.njk b/install_template/templates/products/postgres-enterprise-manager/sles-15.njk index 36a80fa8d42..155f729d413 100644 --- a/install_template/templates/products/postgres-enterprise-manager/sles-15.njk +++ b/install_template/templates/products/postgres-enterprise-manager/sles-15.njk @@ -6,8 +6,4 @@ ```shell zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo ``` -{% endblock prerequisites %} - - -# Install the following repository for PEM dependencies -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo +{% endblock prerequisites %} \ No newline at end of file From 1d3cc05501da228dafbc3f8003f1fb0924f9c85b Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Wed, 23 Feb 2022 17:12:21 +0530 Subject: [PATCH 015/180] Deleted all the rendered files Deleted all the rendered files --- .../renders/edb-bart_2.6_centos-7_ppc64le.mdx | 62 ----------------- .../renders/edb-bart_2.6_centos-7_x86_64.mdx | 44 ------------ .../renders/edb-bart_2.6_centos-8_x86_64.mdx | 52 -------------- .../renders/edb-bart_2.6_debian-10_x86_64.mdx | 45 ------------ .../renders/edb-bart_2.6_debian-9_x86_64.mdx | 50 -------------- .../renders/edb-bart_2.6_rhel-7_ppc64le.mdx | 69 ------------------- .../renders/edb-bart_2.6_rhel-7_x86_64.mdx | 51 -------------- .../renders/edb-bart_2.6_rhel-8_x86_64.mdx | 53 -------------- .../renders/edb-bart_2.6_sles-12_ppc64le.mdx | 49 ------------- .../renders/edb-bart_2.6_sles-12_x86_64.mdx | 49 ------------- .../renders/edb-bart_2.6_sles-15_ppc64le.mdx | 48 ------------- .../renders/edb-bart_2.6_sles-15_x86_64.mdx | 48 ------------- .../edb-bart_2.6_ubuntu-18.04_x86_64.mdx | 45 ------------ .../edb-bart_2.6_ubuntu-20.04_x86_64.mdx | 45 ------------ ...jdbc-connector_42.x.x_centos-7_ppc64le.mdx | 62 ----------------- ...-jdbc-connector_42.x.x_centos-7_x86_64.mdx | 44 ------------ ...-jdbc-connector_42.x.x_centos-8_x86_64.mdx | 52 -------------- ...jdbc-connector_42.x.x_debian-10_x86_64.mdx | 45 ------------ ...-jdbc-connector_42.x.x_debian-9_x86_64.mdx | 50 -------------- ...b-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx | 69 ------------------- ...db-jdbc-connector_42.x.x_rhel-7_x86_64.mdx | 51 -------------- ...db-jdbc-connector_42.x.x_rhel-8_x86_64.mdx | 53 -------------- ...-jdbc-connector_42.x.x_sles-12_ppc64le.mdx | 49 ------------- ...b-jdbc-connector_42.x.x_sles-12_x86_64.mdx | 49 ------------- ...-jdbc-connector_42.x.x_sles-15_ppc64le.mdx | 48 ------------- ...b-jdbc-connector_42.x.x_sles-15_x86_64.mdx | 48 ------------- ...c-connector_42.x.x_ubuntu-18.04_x86_64.mdx | 45 ------------ ...c-connector_42.x.x_ubuntu-20.04_x86_64.mdx | 45 ------------ ...b-migrationtoolkit_54_centos-7_ppc64le.mdx | 62 ----------------- ...db-migrationtoolkit_54_centos-7_x86_64.mdx | 44 ------------ ...db-migrationtoolkit_54_centos-8_x86_64.mdx | 52 -------------- ...b-migrationtoolkit_54_debian-10_x86_64.mdx | 45 ------------ ...db-migrationtoolkit_54_debian-9_x86_64.mdx | 50 -------------- ...edb-migrationtoolkit_54_rhel-7_ppc64le.mdx | 69 ------------------- .../edb-migrationtoolkit_54_rhel-7_x86_64.mdx | 51 -------------- .../edb-migrationtoolkit_54_rhel-8_x86_64.mdx | 53 -------------- ...db-migrationtoolkit_54_sles-12_ppc64le.mdx | 49 ------------- ...edb-migrationtoolkit_54_sles-12_x86_64.mdx | 49 ------------- ...db-migrationtoolkit_54_sles-15_ppc64le.mdx | 48 ------------- ...edb-migrationtoolkit_54_sles-15_x86_64.mdx | 48 ------------- ...igrationtoolkit_54_ubuntu-18.04_x86_64.mdx | 45 ------------ ...igrationtoolkit_54_ubuntu-20.04_x86_64.mdx | 45 ------------ ...b-migrationtoolkit_55_centos-7_ppc64le.mdx | 62 ----------------- ...db-migrationtoolkit_55_centos-7_x86_64.mdx | 44 ------------ ...db-migrationtoolkit_55_centos-8_x86_64.mdx | 52 -------------- ...b-migrationtoolkit_55_debian-10_x86_64.mdx | 45 ------------ ...db-migrationtoolkit_55_debian-9_x86_64.mdx | 50 -------------- ...edb-migrationtoolkit_55_rhel-7_ppc64le.mdx | 69 ------------------- .../edb-migrationtoolkit_55_rhel-7_x86_64.mdx | 51 -------------- .../edb-migrationtoolkit_55_rhel-8_x86_64.mdx | 53 -------------- ...db-migrationtoolkit_55_sles-12_ppc64le.mdx | 49 ------------- ...edb-migrationtoolkit_55_sles-12_x86_64.mdx | 49 ------------- ...db-migrationtoolkit_55_sles-15_ppc64le.mdx | 48 ------------- ...edb-migrationtoolkit_55_sles-15_x86_64.mdx | 48 ------------- ...igrationtoolkit_55_ubuntu-18.04_x86_64.mdx | 45 ------------ ...igrationtoolkit_55_ubuntu-20.04_x86_64.mdx | 45 ------------ ...ci-connector_14.1.0.1_centos-7_ppc64le.mdx | 62 ----------------- ...oci-connector_14.1.0.1_centos-7_x86_64.mdx | 44 ------------ ...oci-connector_14.1.0.1_centos-8_x86_64.mdx | 52 -------------- ...ci-connector_14.1.0.1_debian-10_x86_64.mdx | 45 ------------ ...oci-connector_14.1.0.1_debian-9_x86_64.mdx | 50 -------------- ...-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx | 69 ------------------- ...b-oci-connector_14.1.0.1_rhel-7_x86_64.mdx | 51 -------------- ...b-oci-connector_14.1.0.1_rhel-8_x86_64.mdx | 53 -------------- ...oci-connector_14.1.0.1_sles-12_ppc64le.mdx | 49 ------------- ...-oci-connector_14.1.0.1_sles-12_x86_64.mdx | 49 ------------- ...oci-connector_14.1.0.1_sles-15_ppc64le.mdx | 48 ------------- ...-oci-connector_14.1.0.1_sles-15_x86_64.mdx | 48 ------------- ...connector_14.1.0.1_ubuntu-18.04_x86_64.mdx | 45 ------------ ...connector_14.1.0.1_ubuntu-20.04_x86_64.mdx | 45 ------------ ...bc-connector_13.1.0.2_centos-7_ppc64le.mdx | 62 ----------------- ...dbc-connector_13.1.0.2_centos-7_x86_64.mdx | 44 ------------ ...dbc-connector_13.1.0.2_centos-8_x86_64.mdx | 52 -------------- ...bc-connector_13.1.0.2_debian-10_x86_64.mdx | 45 ------------ ...dbc-connector_13.1.0.2_debian-9_x86_64.mdx | 50 -------------- ...odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx | 69 ------------------- ...-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx | 51 -------------- ...-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx | 53 -------------- ...dbc-connector_13.1.0.2_sles-12_ppc64le.mdx | 49 ------------- ...odbc-connector_13.1.0.2_sles-12_x86_64.mdx | 49 ------------- ...dbc-connector_13.1.0.2_sles-15_ppc64le.mdx | 48 ------------- ...odbc-connector_13.1.0.2_sles-15_x86_64.mdx | 48 ------------- ...connector_13.1.0.2_ubuntu-18.04_x86_64.mdx | 45 ------------ ...connector_13.1.0.2_ubuntu-20.04_x86_64.mdx | 45 ------------ .../edb-pgbouncer_1.14_centos-7_ppc64le.mdx | 62 ----------------- .../edb-pgbouncer_1.14_centos-7_x86_64.mdx | 44 ------------ .../edb-pgbouncer_1.14_centos-8_x86_64.mdx | 52 -------------- .../edb-pgbouncer_1.14_debian-10_x86_64.mdx | 45 ------------ .../edb-pgbouncer_1.14_debian-9_x86_64.mdx | 50 -------------- .../edb-pgbouncer_1.14_rhel-7_ppc64le.mdx | 69 ------------------- .../edb-pgbouncer_1.14_rhel-7_x86_64.mdx | 51 -------------- .../edb-pgbouncer_1.14_rhel-8_x86_64.mdx | 53 -------------- .../edb-pgbouncer_1.14_sles-12_ppc64le.mdx | 49 ------------- .../edb-pgbouncer_1.14_sles-12_x86_64.mdx | 49 ------------- .../edb-pgbouncer_1.14_sles-15_ppc64le.mdx | 48 ------------- .../edb-pgbouncer_1.14_sles-15_x86_64.mdx | 48 ------------- ...edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx | 45 ------------ ...edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx | 45 ------------ .../edb-pgbouncer_1.15_centos-7_ppc64le.mdx | 62 ----------------- .../edb-pgbouncer_1.15_centos-7_x86_64.mdx | 44 ------------ .../edb-pgbouncer_1.15_centos-8_x86_64.mdx | 52 -------------- .../edb-pgbouncer_1.15_debian-10_x86_64.mdx | 45 ------------ .../edb-pgbouncer_1.15_debian-9_x86_64.mdx | 50 -------------- .../edb-pgbouncer_1.15_rhel-7_ppc64le.mdx | 69 ------------------- .../edb-pgbouncer_1.15_rhel-7_x86_64.mdx | 51 -------------- .../edb-pgbouncer_1.15_rhel-8_x86_64.mdx | 53 -------------- .../edb-pgbouncer_1.15_sles-12_ppc64le.mdx | 49 ------------- .../edb-pgbouncer_1.15_sles-12_x86_64.mdx | 49 ------------- .../edb-pgbouncer_1.15_sles-15_ppc64le.mdx | 48 ------------- .../edb-pgbouncer_1.15_sles-15_x86_64.mdx | 48 ------------- ...edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx | 45 ------------ ...edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx | 45 ------------ .../edb-pgbouncer_1.16_centos-7_ppc64le.mdx | 62 ----------------- .../edb-pgbouncer_1.16_centos-7_x86_64.mdx | 44 ------------ .../edb-pgbouncer_1.16_centos-8_x86_64.mdx | 52 -------------- .../edb-pgbouncer_1.16_debian-10_x86_64.mdx | 45 ------------ .../edb-pgbouncer_1.16_debian-9_x86_64.mdx | 50 -------------- .../edb-pgbouncer_1.16_rhel-7_ppc64le.mdx | 69 ------------------- .../edb-pgbouncer_1.16_rhel-7_x86_64.mdx | 51 -------------- .../edb-pgbouncer_1.16_rhel-8_x86_64.mdx | 53 -------------- .../edb-pgbouncer_1.16_sles-12_ppc64le.mdx | 49 ------------- .../edb-pgbouncer_1.16_sles-12_x86_64.mdx | 49 ------------- .../edb-pgbouncer_1.16_sles-15_ppc64le.mdx | 48 ------------- .../edb-pgbouncer_1.16_sles-15_x86_64.mdx | 48 ------------- ...edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx | 45 ------------ ...edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx | 45 ------------ .../edb-pgpoolii_4_centos-7_ppc64le.mdx | 62 ----------------- .../edb-pgpoolii_4_centos-7_x86_64.mdx | 44 ------------ .../edb-pgpoolii_4_centos-8_x86_64.mdx | 52 -------------- .../edb-pgpoolii_4_debian-10_x86_64.mdx | 45 ------------ .../edb-pgpoolii_4_debian-9_x86_64.mdx | 50 -------------- .../renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx | 69 ------------------- .../renders/edb-pgpoolii_4_rhel-7_x86_64.mdx | 51 -------------- .../renders/edb-pgpoolii_4_rhel-8_x86_64.mdx | 53 -------------- .../edb-pgpoolii_4_sles-12_ppc64le.mdx | 49 ------------- .../renders/edb-pgpoolii_4_sles-12_x86_64.mdx | 49 ------------- 136 files changed, 6914 deletions(-) delete mode 100644 install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx diff --git a/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx b/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx deleted file mode 100644 index b35401d3ee6..00000000000 --- a/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB BART 2.6 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-bart -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx b/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx deleted file mode 100644 index 8b8d0cd986b..00000000000 --- a/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB BART 2.6 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-bart -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx b/install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx deleted file mode 100644 index 9c07b2ce70c..00000000000 --- a/install_template/renders/edb-bart_2.6_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB BART 2.6 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx b/install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx deleted file mode 100644 index c3c9fce5b14..00000000000 --- a/install_template/renders/edb-bart_2.6_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB BART 2.6 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx b/install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx deleted file mode 100644 index f58f1d4f164..00000000000 --- a/install_template/renders/edb-bart_2.6_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB BART 2.6 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-bart -```` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx b/install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx deleted file mode 100644 index 7f5889a42a1..00000000000 --- a/install_template/renders/edb-bart_2.6_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB BART 2.6 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-bart -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx b/install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx deleted file mode 100644 index ce52ba8af99..00000000000 --- a/install_template/renders/edb-bart_2.6_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB BART 2.6 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-bart -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx b/install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx deleted file mode 100644 index 6e5185fc5ff..00000000000 --- a/install_template/renders/edb-bart_2.6_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB BART 2.6 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-bart -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx b/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx deleted file mode 100644 index 7a19ae2689e..00000000000 --- a/install_template/renders/edb-bart_2.6_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB BART 2.6 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx b/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx deleted file mode 100644 index 2d78cd7da19..00000000000 --- a/install_template/renders/edb-bart_2.6_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB BART 2.6 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx b/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx deleted file mode 100644 index 72ac10e87b7..00000000000 --- a/install_template/renders/edb-bart_2.6_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB BART 2.6 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx b/install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx deleted file mode 100644 index cadfaad7479..00000000000 --- a/install_template/renders/edb-bart_2.6_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB BART 2.6 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 9a90dcb6653..00000000000 --- a/install_template/renders/edb-bart_2.6_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB BART 2.6 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index c315f3a5710..00000000000 --- a/install_template/renders/edb-bart_2.6_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB BART 2.6 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-bart -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx deleted file mode 100644 index d038043d050..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-jdbc -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx deleted file mode 100644 index 5cdb7c69cba..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-jdbc -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx deleted file mode 100644 index e4a5ed747d9..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx deleted file mode 100644 index a2c69969322..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx deleted file mode 100644 index a5b1843456e..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-jdbc -```` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx deleted file mode 100644 index 0a421596481..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-jdbc -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx deleted file mode 100644 index 9e19706811d..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-jdbc -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx deleted file mode 100644 index 53777e55657..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-jdbc -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx deleted file mode 100644 index 83a2e6678f3..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx deleted file mode 100644 index e538ac5b784..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx deleted file mode 100644 index dcc27b7e27b..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx deleted file mode 100644 index 1f91d713944..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 6a0ff0ad765..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 675537a9d36..00000000000 --- a/install_template/renders/edb-jdbc-connector_42.x.x_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB JDBC Connector 42.x.x on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-jdbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx deleted file mode 100644 index 2ea9ff20759..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB MigrationToolkit 54 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-migrationtoolkit -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx deleted file mode 100644 index ea72bbb0ea2..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB MigrationToolkit 54 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-migrationtoolkit -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx deleted file mode 100644 index bb48fcfbdc5..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB MigrationToolkit 54 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx deleted file mode 100644 index 62c80ab8942..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB MigrationToolkit 54 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx deleted file mode 100644 index 94390ff3df8..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB MigrationToolkit 54 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-migrationtoolkit -```` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx deleted file mode 100644 index 2c95a73e0ee..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB MigrationToolkit 54 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-migrationtoolkit -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx deleted file mode 100644 index ffb39930a14..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB MigrationToolkit 54 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-migrationtoolkit -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx deleted file mode 100644 index 3ebaf9790aa..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB MigrationToolkit 54 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-migrationtoolkit -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx deleted file mode 100644 index 312e45920a7..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB MigrationToolkit 54 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx deleted file mode 100644 index ee1de933b47..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB MigrationToolkit 54 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx deleted file mode 100644 index ae69ef26572..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB MigrationToolkit 54 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx deleted file mode 100644 index 5ca65347e4c..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB MigrationToolkit 54 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 84bde1c110f..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB MigrationToolkit 54 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 088c0711ef4..00000000000 --- a/install_template/renders/edb-migrationtoolkit_54_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB MigrationToolkit 54 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx deleted file mode 100644 index 6d628e9a6c2..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB MigrationToolkit 55 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-migrationtoolkit -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx deleted file mode 100644 index f8909119b72..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB MigrationToolkit 55 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-migrationtoolkit -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx deleted file mode 100644 index d290dec34f1..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB MigrationToolkit 55 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx deleted file mode 100644 index e1bddf60e69..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB MigrationToolkit 55 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx deleted file mode 100644 index 3d7d291a53f..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB MigrationToolkit 55 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-migrationtoolkit -```` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx deleted file mode 100644 index ead125ce33a..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB MigrationToolkit 55 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-migrationtoolkit -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx deleted file mode 100644 index 689a619c4d8..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB MigrationToolkit 55 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-migrationtoolkit -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx deleted file mode 100644 index 82f7cb7df18..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB MigrationToolkit 55 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-migrationtoolkit -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx deleted file mode 100644 index d36ce193d8f..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB MigrationToolkit 55 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx deleted file mode 100644 index 737f7407505..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB MigrationToolkit 55 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx deleted file mode 100644 index 84a6cee36ab..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB MigrationToolkit 55 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx deleted file mode 100644 index 72dd742f3a5..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB MigrationToolkit 55 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index d1438acef32..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB MigrationToolkit 55 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index d5b1830e0f0..00000000000 --- a/install_template/renders/edb-migrationtoolkit_55_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB MigrationToolkit 55 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-migrationtoolkit -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx deleted file mode 100644 index 2d38111896f..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-oci -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx deleted file mode 100644 index fd66d6e20c2..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-oci -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx deleted file mode 100644 index 46e5c8a7b3c..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx deleted file mode 100644 index bfb6f8f79c8..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx deleted file mode 100644 index ce217c28792..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-oci -```` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx deleted file mode 100644 index 110459fe0f8..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-oci -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx deleted file mode 100644 index 3b1393a45ba..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-oci -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx deleted file mode 100644 index c447b4c234b..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-oci -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx deleted file mode 100644 index cea3562c84a..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx deleted file mode 100644 index 6a2f517fa0c..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx deleted file mode 100644 index 787da3dee2b..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx deleted file mode 100644 index 412321123bd..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 915eac2f621..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index c2529b08c49..00000000000 --- a/install_template/renders/edb-oci-connector_14.1.0.1_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB OCI Connector 14.1.0.1 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-oci -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx deleted file mode 100644 index b70893089ed..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-odbc -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx deleted file mode 100644 index ab5898e5fd7..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-odbc -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx deleted file mode 100644 index 7e3bbaddc95..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx deleted file mode 100644 index c4b256a4a01..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx deleted file mode 100644 index 0c8871d4269..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-odbc -```` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx deleted file mode 100644 index ab93c5a3658..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-odbc -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx deleted file mode 100644 index a450d75218b..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-odbc -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx deleted file mode 100644 index 514fa97b1e2..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-odbc -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx deleted file mode 100644 index 2d7ad0771e4..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx deleted file mode 100644 index dcf5b7071a0..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx deleted file mode 100644 index 2d99290e699..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx deleted file mode 100644 index fea8897f5b2..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index dca176ca82d..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index c93ccd21f9e..00000000000 --- a/install_template/renders/edb-odbc-connector_13.1.0.2_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB ODBC Connector 13.1.0.2 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-odbc -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx deleted file mode 100644 index 1e0e2ecaca4..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB pgBouncer 1.14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgbouncer114 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx deleted file mode 100644 index bb67ab529f4..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB pgBouncer 1.14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgbouncer114 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx deleted file mode 100644 index 9a7381f7ac6..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB pgBouncer 1.14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx deleted file mode 100644 index e5f0de75ebd..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx deleted file mode 100644 index f5371a824ee..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB pgBouncer 1.14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pgbouncer114 -```` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx deleted file mode 100644 index 2438faead1a..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB pgBouncer 1.14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgbouncer114 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx deleted file mode 100644 index 06e48cd7a88..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB pgBouncer 1.14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgbouncer114 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx deleted file mode 100644 index a57b3390e8d..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB pgBouncer 1.14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pgbouncer114 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx deleted file mode 100644 index ce06266811c..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB pgBouncer 1.14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx deleted file mode 100644 index b2825db3359..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB pgBouncer 1.14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx deleted file mode 100644 index 2e5fcf19f56..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB pgBouncer 1.14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx deleted file mode 100644 index f61ed56e531..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB pgBouncer 1.14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index aaa71629f4e..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index ec053ae202b..00000000000 --- a/install_template/renders/edb-pgbouncer_1.14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer114 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx deleted file mode 100644 index 15a620fbcc9..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB pgBouncer 1.15 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgbouncer115 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx deleted file mode 100644 index 70ddd5d3663..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB pgBouncer 1.15 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgbouncer115 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx deleted file mode 100644 index 884f01063ed..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB pgBouncer 1.15 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx deleted file mode 100644 index 97a4b85a686..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.15 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx deleted file mode 100644 index 4ffb7989692..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB pgBouncer 1.15 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pgbouncer115 -```` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx deleted file mode 100644 index ff6af8a2830..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB pgBouncer 1.15 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgbouncer115 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx deleted file mode 100644 index 1065f5bb57b..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB pgBouncer 1.15 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgbouncer115 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx deleted file mode 100644 index f3fd847af20..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB pgBouncer 1.15 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pgbouncer115 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx deleted file mode 100644 index abf238b9b58..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB pgBouncer 1.15 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx deleted file mode 100644 index 9ac8036ca29..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB pgBouncer 1.15 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx deleted file mode 100644 index c2f15341ece..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB pgBouncer 1.15 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx deleted file mode 100644 index 991d190d3a6..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB pgBouncer 1.15 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 216017f5c14..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.15 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 47d5acd6feb..00000000000 --- a/install_template/renders/edb-pgbouncer_1.15_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.15 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer115 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx deleted file mode 100644 index 261065660e3..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB pgBouncer 1.16 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgbouncer116 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx deleted file mode 100644 index ba0ff2d2809..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB pgBouncer 1.16 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgbouncer116 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx deleted file mode 100644 index e3cd6794605..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB pgBouncer 1.16 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx deleted file mode 100644 index eb61a6ae5d8..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.16 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx deleted file mode 100644 index f4ba5e5be97..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB pgBouncer 1.16 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pgbouncer116 -```` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx deleted file mode 100644 index 479f48d080e..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB pgBouncer 1.16 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgbouncer116 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx deleted file mode 100644 index e2643cc8de6..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB pgBouncer 1.16 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgbouncer116 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx deleted file mode 100644 index ccaae47950b..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB pgBouncer 1.16 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pgbouncer116 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx deleted file mode 100644 index ab2dd24cb49..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB pgBouncer 1.16 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx deleted file mode 100644 index b7bd7a23558..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB pgBouncer 1.16 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx deleted file mode 100644 index 85b1eaa5f96..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB pgBouncer 1.16 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx deleted file mode 100644 index da904faa8f7..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB pgBouncer 1.16 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 044f0202b57..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.16 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index df75cf0928c..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB pgBouncer 1.16 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgbouncer116 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx deleted file mode 100644 index 54d41704eb3..00000000000 --- a/install_template/renders/edb-pgpoolii_4_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB PgpoolII 4 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool4 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx deleted file mode 100644 index ec1be917d5c..00000000000 --- a/install_template/renders/edb-pgpoolii_4_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB PgpoolII 4 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool4 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx deleted file mode 100644 index 8f186034e96..00000000000 --- a/install_template/renders/edb-pgpoolii_4_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB PgpoolII 4 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool4 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx deleted file mode 100644 index 3f264e574c2..00000000000 --- a/install_template/renders/edb-pgpoolii_4_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool4 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx deleted file mode 100644 index 5fb49355e75..00000000000 --- a/install_template/renders/edb-pgpoolii_4_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB PgpoolII 4 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pgpool4 -```` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx deleted file mode 100644 index 7d69edecfbe..00000000000 --- a/install_template/renders/edb-pgpoolii_4_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB PgpoolII 4 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool4 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx deleted file mode 100644 index 6d4c63f2ea3..00000000000 --- a/install_template/renders/edb-pgpoolii_4_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB PgpoolII 4 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool4 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx deleted file mode 100644 index 4533ec8a955..00000000000 --- a/install_template/renders/edb-pgpoolii_4_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB PgpoolII 4 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool4 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx deleted file mode 100644 index 5bab2ad9c95..00000000000 --- a/install_template/renders/edb-pgpoolii_4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool4 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx deleted file mode 100644 index 323be9fcdb6..00000000000 --- a/install_template/renders/edb-pgpoolii_4_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool4 -``` - -## Initial Configuration From 718d16c58723ab7da3328c10a88dd7168a42bb05 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Wed, 2 Mar 2022 20:41:29 +0530 Subject: [PATCH 016/180] Minor fixes done Minor fixes done --- install_template/config.yaml | 9 +++------ .../renders/edb-bart_2.6_centos-7_ppc64le.mdx | 0 .../renders/edb-bart_2.6_centos-7_x86_64.mdx | 0 ...ntos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 0 install_template/templates/platformBase/base.njk | 14 +++++++++----- .../platformBase/{rhel-7.njk => rhel-7-or-ol-8njk} | 0 .../{rhel-8-centos-8-ol-8.njk => rhel-8-ol-8.njk} | 0 7 files changed, 12 insertions(+), 11 deletions(-) create mode 100644 install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx create mode 100644 install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx rename install_template/templates/platformBase/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (100%) rename install_template/templates/platformBase/{rhel-7.njk => rhel-7-or-ol-8njk} (100%) rename install_template/templates/platformBase/{rhel-8-centos-8-ol-8.njk => rhel-8-ol-8.njk} (100%) diff --git a/install_template/config.yaml b/install_template/config.yaml index fda9982b6e3..7321d272eae 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -92,19 +92,16 @@ products: - name: CentOS 7 arch: x86_64 supported versions: [54, 55] - - name: CentOS 7 - arch: ppc64le - supported versions: [54, 55] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [54, 55] - - name: RHEL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [54, 55] - name: RHEL 7 arch: ppc64le supported versions: [54, 55] - - name: RHEL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [54, 55] - name: Debian 9 diff --git a/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx b/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx new file mode 100644 index 00000000000..e69de29bb2d diff --git a/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx b/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx new file mode 100644 index 00000000000..e69de29bb2d diff --git a/install_template/templates/platformBase/centos-8.njk b/install_template/templates/platformBase/almalinux-8-or-rocky-linux-8.njk similarity index 100% rename from install_template/templates/platformBase/centos-8.njk rename to install_template/templates/platformBase/almalinux-8-or-rocky-linux-8.njk diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 824479597cb..fe08cae13f2 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -1,10 +1,13 @@ -# Installing {{ product.name }} {{ product.version }} on {{ platform.name }} {{ platform.arch }} +--- +navTitle: {{ platform.name }} on {{ platform.arch }} +title: Installing {{ product.name }} {{ product.version }} on {{ platform.name }} {{ platform.arch }} +--- -There are three steps to completing an installation: +To complete an installation: -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Performing the initial configuration](#initial-configuration) For each step, you must be logged in as superuser. @@ -24,5 +27,6 @@ Before setting up the repository, you need to register with EDB. To receive cred {% block installCommand %}{% endblock installCommand %} ## Initial Configuration + {% block postinstall %}{% endblock postinstall %} diff --git a/install_template/templates/platformBase/rhel-7.njk b/install_template/templates/platformBase/rhel-7-or-ol-8njk similarity index 100% rename from install_template/templates/platformBase/rhel-7.njk rename to install_template/templates/platformBase/rhel-7-or-ol-8njk diff --git a/install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk b/install_template/templates/platformBase/rhel-8-ol-8.njk similarity index 100% rename from install_template/templates/platformBase/rhel-8-centos-8-ol-8.njk rename to install_template/templates/platformBase/rhel-8-ol-8.njk From 220624135bad10e7cfc03a8a17f15e5105e5e46f Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 2 Mar 2022 10:45:59 -0500 Subject: [PATCH 017/180] For Migration Toolkit Reordered entries to match most recent docs; also combine or renamed as necessary to match docs. --- install_template/config.yaml | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 7321d272eae..07a54bb6b99 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -89,7 +89,7 @@ products: supported versions: [42.x.x] - name: EDB MigrationToolkit platforms: - - name: CentOS 7 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [54, 55] - name: AlmaLinux 8 or Rocky Linux 8 @@ -98,36 +98,33 @@ products: - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [54, 55] - - name: RHEL 7 - arch: ppc64le - supported versions: [54, 55] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [54, 55] - - name: Debian 9 - arch: x86_64 - supported versions: [54, 55] - - name: Debian 10 + - name: CentOS 7 arch: x86_64 supported versions: [54, 55] - - name: Ubuntu 18.04 + - name: SLES 15 arch: x86_64 + supported versions: [55] + - name: SLES 12 + arch: ppc64le supported versions: [54, 55] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [54, 55] - - name: SLES 12 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [54, 55] - - name: SLES 12 + - name: RHEL 8 + arch: ppc64le + supported versions: [55] + - name: RHEL 7 arch: ppc64le - supported versions: [54, 55] - - name: SLES 15 - arch: x86_64 supported versions: [54, 55] - name: SLES 15 arch: ppc64le - supported versions: [54, 55] + supported versions: [55] + - name: SLES 12 + arch: x86_64 + supported versions: [55] - name: EDB OCI Connector platforms: - name: CentOS 7 From eb564f666c4a857105e0bfc79d4d7f5330a9bbf4 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 2 Mar 2022 11:35:17 -0500 Subject: [PATCH 018/180] Updated SLES 15 as a first attempt also changed supported version numbers in YAML file --- install_template/config.yaml | 8 ++++---- install_template/templates/platformBase/sles-15.njk | 11 ++++------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 07a54bb6b99..faf9a5e2a72 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -103,7 +103,7 @@ products: supported versions: [54, 55] - name: SLES 15 arch: x86_64 - supported versions: [55] + supported versions: [54, 55] - name: SLES 12 arch: ppc64le supported versions: [54, 55] @@ -115,16 +115,16 @@ products: supported versions: [54, 55] - name: RHEL 8 arch: ppc64le - supported versions: [55] + supported versions: [54, 55] - name: RHEL 7 arch: ppc64le supported versions: [54, 55] - name: SLES 15 arch: ppc64le - supported versions: [55] + supported versions: [54, 55] - name: SLES 12 arch: x86_64 - supported versions: [55] + supported versions: [54, 55] - name: EDB OCI Connector platforms: - name: CentOS 7 diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 26565bcb721..0fce9b6718d 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,25 +1,22 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} ```shell -# Install the repository configuration +# Install the repository configuration and enter your EDB repository +# credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Refresh the metadata -zypper refresh - # Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module SUSEConnect -p PackageHub/15.3/{{ platform.arch }} # Refresh the metadata zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk ``` {% endblock prerequisites %} From b1280d73cc0e14089915931cd56fe63ad82b4a5c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 3 Mar 2022 10:56:56 -0500 Subject: [PATCH 019/180] a few changes to sles 12 for MTK 55 --- install_template/templates/platformBase/sles-12.njk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 8430a65a2a8..7f77e1b452c 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,21 +1,22 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} ```shell -# Install the repository configuration +# Install the repository configuration and enter your EDB repository +# credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # Refresh the metadata zypper refresh -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + # Refresh the metadata zypper refresh From b21c3a71f0c3cb013e28f582fe98edb44fc1a2d1 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 4 Mar 2022 09:51:49 -0500 Subject: [PATCH 020/180] Removing mentions of CentOS 8 --- install_template/config.yaml | 32 +++++++++---------- ...8.njk => almalinux-8-or-rocky-linux-8.njk} | 0 2 files changed, 16 insertions(+), 16 deletions(-) rename install_template/templates/products/edb-bart/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (100%) diff --git a/install_template/config.yaml b/install_template/config.yaml index faf9a5e2a72..bc924fea3d5 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -7,7 +7,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [2.6] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [2.6] - name: RHEL 7 @@ -51,7 +51,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [42.x.x] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [42.x.x] - name: RHEL 7 @@ -133,7 +133,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [14.1.0.1] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 88 arch: x86_64 supported versions: [14.1.0.1] - name: RHEL 7 @@ -177,7 +177,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [13.1.0.2] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [13.1.0.2] - name: RHEL 7 @@ -221,7 +221,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [1.14, 1.15, 1.16] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - name: RHEL 7 @@ -265,7 +265,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [4.0, 4.1, 4.2, 4.3] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - name: RHEL 7 @@ -309,7 +309,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [9.6, 10, 11, 12, 13, 14] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 @@ -359,7 +359,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [9.6, 11, 12, 13, 14] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - name: RHEL 7 @@ -403,7 +403,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - name: RHEL 7 @@ -447,7 +447,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 @@ -491,7 +491,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 @@ -535,7 +535,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 @@ -579,7 +579,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 @@ -623,7 +623,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [7, 8] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [7, 8] - name: RHEL 7 @@ -667,7 +667,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [7] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [7] - name: RHEL 7 @@ -711,7 +711,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: CentOS 8 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 diff --git a/install_template/templates/products/edb-bart/centos-8.njk b/install_template/templates/products/edb-bart/almalinux-8-or-rocky-linux-8.njk similarity index 100% rename from install_template/templates/products/edb-bart/centos-8.njk rename to install_template/templates/products/edb-bart/almalinux-8-or-rocky-linux-8.njk From fc4d758a99436482f29c4bbebec0f9fdad931ed9 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 4 Mar 2022 10:38:39 -0500 Subject: [PATCH 021/180] removed reference to centos-8 reference was in products/edb-bart/almalinux-8-or-rocky-linux-8.njk. Replaced centos-8 with the almalinux string --- .../products/edb-bart/almalinux-8-or-rocky-linux-8.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-bart/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-bart/almalinux-8-or-rocky-linux-8.njk index 48f1c596b94..f8ede94475e 100644 --- a/install_template/templates/products/edb-bart/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/edb-bart/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-bart/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: From 65352e4bd3ac78d085245b0b38da1290db61ebd0 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 4 Mar 2022 10:58:15 -0500 Subject: [PATCH 022/180] changed reference to rhel-7 reference was in products/edb-bart/rhel-7.njk. Replaced rhel-7 with rhel-7-or-ol-7 --- .../edb-bart_2.6_almalinux-8-or-rocky-linux-8_x86_64.mdx | 0 .../platformBase/{rhel-7-or-ol-8njk => rhel-7-or-ol-7.njk} | 0 install_template/templates/products/edb-bart/rhel-7.njk | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 install_template/renders/edb-bart_2.6_almalinux-8-or-rocky-linux-8_x86_64.mdx rename install_template/templates/platformBase/{rhel-7-or-ol-8njk => rhel-7-or-ol-7.njk} (100%) diff --git a/install_template/renders/edb-bart_2.6_almalinux-8-or-rocky-linux-8_x86_64.mdx b/install_template/renders/edb-bart_2.6_almalinux-8-or-rocky-linux-8_x86_64.mdx new file mode 100644 index 00000000000..e69de29bb2d diff --git a/install_template/templates/platformBase/rhel-7-or-ol-8njk b/install_template/templates/platformBase/rhel-7-or-ol-7.njk similarity index 100% rename from install_template/templates/platformBase/rhel-7-or-ol-8njk rename to install_template/templates/platformBase/rhel-7-or-ol-7.njk diff --git a/install_template/templates/products/edb-bart/rhel-7.njk b/install_template/templates/products/edb-bart/rhel-7.njk index 4675b54c821..1b365d0e140 100644 --- a/install_template/templates/products/edb-bart/rhel-7.njk +++ b/install_template/templates/products/edb-bart/rhel-7.njk @@ -1,2 +1,2 @@ {% extends "products/edb-bart/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file From 17e4ea6bad9298526557569993e8aa3c7b60f47f Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 7 Mar 2022 11:48:27 -0500 Subject: [PATCH 023/180] Changing template file names --- install_template/config.yaml | 2 +- .../{rhel-7-or-ol-7.njk => rhel-7-ol-7.njk} | 0 .../{rhel-8.njk => rhel-8-ol-8-old.njk} | 26 +++++++++++++------ .../templates/platformBase/rhel-8-ol-8.njk | 26 ++++++------------- ...debian-9.njk => ubuntu-18-04-debian-9.njk} | 0 ...bian-10.njk => ubuntu-20-04-debian-10.njk} | 0 6 files changed, 27 insertions(+), 27 deletions(-) rename install_template/templates/platformBase/{rhel-7-or-ol-7.njk => rhel-7-ol-7.njk} (100%) rename install_template/templates/platformBase/{rhel-8.njk => rhel-8-ol-8-old.njk} (53%) rename install_template/templates/platformBase/{debian-9.njk => ubuntu-18-04-debian-9.njk} (100%) rename install_template/templates/platformBase/{debian-10.njk => ubuntu-20-04-debian-10.njk} (100%) diff --git a/install_template/config.yaml b/install_template/config.yaml index bc924fea3d5..62c63ee6c63 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -133,7 +133,7 @@ products: - name: CentOS 7 arch: ppc64le supported versions: [14.1.0.1] - - name: AlmaLinux 8 or Rocky Linux 88 + - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [14.1.0.1] - name: RHEL 7 diff --git a/install_template/templates/platformBase/rhel-7-or-ol-7.njk b/install_template/templates/platformBase/rhel-7-ol-7.njk similarity index 100% rename from install_template/templates/platformBase/rhel-7-or-ol-7.njk rename to install_template/templates/platformBase/rhel-7-ol-7.njk diff --git a/install_template/templates/platformBase/rhel-8.njk b/install_template/templates/platformBase/rhel-8-ol-8-old.njk similarity index 53% rename from install_template/templates/platformBase/rhel-8.njk rename to install_template/templates/platformBase/rhel-8-ol-8-old.njk index f93689be890..dc2c08f31b5 100644 --- a/install_template/templates/platformBase/rhel-8.njk +++ b/install_template/templates/platformBase/rhel-8-ol-8-old.njk @@ -2,20 +2,30 @@ {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} {% block prerequisites %} {{ centosRepositoryConfiguration("dnf", "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm") }} -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -ARCH=$( /bin/arch ) -subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" +1. The EPEL packages may depend on packages from other repositories, to download the packages enable the platform-specific repositories. -# Disable the built-in PostgreSQL module: -dnf -qy module disable postgresql -``` +- For RHEL, the `codeready-builder-for-rhel-8-*-rpms` repository: + + ```shell + ARCH=$( /bin/arch ) + subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" + ``` +- For CentOS, the `powertools` repository: + + ```shell + dnf config-manager --set-enabled powertools + ``` + +1. Disable the built-in PostgreSQL module: + + ```shell + dnf -qy module disable postgresql + ``` {% endblock prerequisites %} {% block installCommand %} ```shell {{ centosInstallCommand("dnf", packageName) }} ``` - !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. {% endblock installCommand %} diff --git a/install_template/templates/platformBase/rhel-8-ol-8.njk b/install_template/templates/platformBase/rhel-8-ol-8.njk index dc2c08f31b5..f93689be890 100644 --- a/install_template/templates/platformBase/rhel-8-ol-8.njk +++ b/install_template/templates/platformBase/rhel-8-ol-8.njk @@ -2,30 +2,20 @@ {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} {% block prerequisites %} {{ centosRepositoryConfiguration("dnf", "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm") }} -1. The EPEL packages may depend on packages from other repositories, to download the packages enable the platform-specific repositories. - -- For RHEL, the `codeready-builder-for-rhel-8-*-rpms` repository: - - ```shell - ARCH=$( /bin/arch ) - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` -- For CentOS, the `powertools` repository: - - ```shell - dnf config-manager --set-enabled powertools - ``` - -1. Disable the built-in PostgreSQL module: +```shell +# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it +ARCH=$( /bin/arch ) +subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ```shell - dnf -qy module disable postgresql - ``` +# Disable the built-in PostgreSQL module: +dnf -qy module disable postgresql +``` {% endblock prerequisites %} {% block installCommand %} ```shell {{ centosInstallCommand("dnf", packageName) }} ``` + !!! Note Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. {% endblock installCommand %} diff --git a/install_template/templates/platformBase/debian-9.njk b/install_template/templates/platformBase/ubuntu-18-04-debian-9.njk similarity index 100% rename from install_template/templates/platformBase/debian-9.njk rename to install_template/templates/platformBase/ubuntu-18-04-debian-9.njk diff --git a/install_template/templates/platformBase/debian-10.njk b/install_template/templates/platformBase/ubuntu-20-04-debian-10.njk similarity index 100% rename from install_template/templates/platformBase/debian-10.njk rename to install_template/templates/platformBase/ubuntu-20-04-debian-10.njk From ca2771b0e4f03ce2b9888116f3b3cf9ea818cb7b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 9 Mar 2022 11:18:25 -0500 Subject: [PATCH 024/180] Renamed RHEL 8, RHEL 7, and consolidated Debian and Ubuntu --- install_template/config.yaml | 234 +++++++++++------------------------ 1 file changed, 69 insertions(+), 165 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 62c63ee6c63..3b9461b8f42 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -10,25 +10,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [2.6] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [2.6] - name: RHEL 7 arch: ppc64le supported versions: [2.6] - - name: RHEL 8 - arch: x86_64 - supported versions: [2.6] - - name: Debian 9 - arch: x86_64 - supported versions: [2.6] - - name: Debian 10 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [2.6] - - name: Ubuntu 18.04 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [2.6] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [2.6] - name: SLES 12 @@ -54,25 +48,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [42.x.x] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [42.x.x] - name: RHEL 7 arch: ppc64le supported versions: [42.x.x] - - name: RHEL 8 - arch: x86_64 - supported versions: [42.x.x] - - name: Debian 9 - arch: x86_64 - supported versions: [42.x.x] - - name: Debian 10 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [42.x.x] - - name: Ubuntu 18.04 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [42.x.x] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [42.x.x] - name: SLES 12 @@ -95,7 +83,7 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [54, 55] - - name: RHEL 7 or OL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [54, 55] - name: CentOS 7 @@ -107,13 +95,13 @@ products: - name: SLES 12 arch: ppc64le supported versions: [54, 55] - - name: Ubuntu 20.04 or Debian 10 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [54, 55] - - name: Ubuntu 18.04 or Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [54, 55] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: ppc64le supported versions: [54, 55] - name: RHEL 7 @@ -136,25 +124,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [14.1.0.1] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [14.1.0.1] - name: RHEL 7 arch: ppc64le supported versions: [14.1.0.1] - - name: RHEL 8 - arch: x86_64 - supported versions: [14.1.0.1] - - name: Debian 9 - arch: x86_64 - supported versions: [14.1.0.1] - - name: Debian 10 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [14.1.0.1] - - name: Ubuntu 18.04 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [14.1.0.1] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [14.1.0.1] - name: SLES 12 @@ -180,25 +162,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [13.1.0.2] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [13.1.0.2] - name: RHEL 7 arch: ppc64le supported versions: [13.1.0.2] - - name: RHEL 8 - arch: x86_64 - supported versions: [13.1.0.2] - - name: Debian 9 - arch: x86_64 - supported versions: [13.1.0.2] - - name: Debian 10 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [13.1.0.2] - - name: Ubuntu 18.04 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [13.1.0.2] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [13.1.0.2] - name: SLES 12 @@ -224,25 +200,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - name: RHEL 7 arch: ppc64le supported versions: [1.14, 1.15, 1.16] - - name: RHEL 8 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: Debian 9 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: Debian 10 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - - name: Ubuntu 18.04 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - name: SLES 12 @@ -268,25 +238,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - name: RHEL 7 arch: ppc64le supported versions: [4.0, 4.1, 4.2, 4.3] - - name: RHEL 8 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Debian 9 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Debian 10 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Ubuntu 18.04 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - name: SLES 12 @@ -312,7 +276,7 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [9.6, 10, 11, 12, 13, 14] - name: RHEL 7 @@ -321,22 +285,16 @@ products: - name: RHEL 7 arch: local supported versions: [9.6, 10, 11, 12, 13, 14] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: Linux on IBM Power (ppc64le) supported versions: [11, 12, 13, 14] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 10 - arch: x86_64 - supported versions: [12, 13, 14] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [13, 14] - name: SLES 12 @@ -362,25 +320,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [9.6, 11, 12, 13, 14] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - - name: Debian 10 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - name: SLES 12 @@ -406,25 +358,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - name: RHEL 7 arch: ppc64le supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Debian 10 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - name: SLES 12 @@ -450,25 +396,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -494,25 +434,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -538,25 +472,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -582,25 +510,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -626,25 +548,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [7, 8] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [7, 8] - name: RHEL 7 arch: ppc64le supported versions: [7, 8] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [7, 8] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [7, 8] - - name: Debian 10 - arch: x86_64 - supported versions: [7, 8] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [7, 8] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [7, 8] - name: SLES 12 @@ -670,25 +586,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [7] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [7] - name: RHEL 7 arch: ppc64le supported versions: [7] - - name: RHEL 8 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [7] - - name: Debian 9 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [7] - - name: Debian 10 - arch: x86_64 - supported versions: [7] - - name: Ubuntu 18.04 - arch: x86_64 - supported versions: [7] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [7] - name: SLES 12 @@ -714,25 +624,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7 + - name: RHEL 7/OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Debian 9 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Debian 10 + - name: RHEL 8/OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 + - name: Ubuntu 18.04/Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 + - name: Ubuntu 20.04/Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 From 4b27286c5fdbe148adda3a5cc678e90c00b5013a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 9 Mar 2022 11:40:52 -0500 Subject: [PATCH 025/180] changes slashes to or in config, renamed files to replace slash with or --- install_template/config.yaml | 138 +++++++++--------- .../{rhel-7-ol-7.njk => rhel-7-or-ol-7.njk} | 0 .../{rhel-8-ol-8.njk => rhel-8-or-ol-8.njk} | 0 ...ian-9.njk => ubuntu-18-04-or-debian-9.njk} | 0 ...n-10.njk => ubuntu-20-04-or-debian-10.njk} | 0 5 files changed, 69 insertions(+), 69 deletions(-) rename install_template/templates/platformBase/{rhel-7-ol-7.njk => rhel-7-or-ol-7.njk} (100%) rename install_template/templates/platformBase/{rhel-8-ol-8.njk => rhel-8-or-ol-8.njk} (100%) rename install_template/templates/platformBase/{ubuntu-18-04-debian-9.njk => ubuntu-18-04-or-debian-9.njk} (100%) rename install_template/templates/platformBase/{ubuntu-20-04-debian-10.njk => ubuntu-20-04-or-debian-10.njk} (100%) diff --git a/install_template/config.yaml b/install_template/config.yaml index 3b9461b8f42..8d11ae78e50 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -10,19 +10,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [2.6] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [2.6] - name: RHEL 7 arch: ppc64le supported versions: [2.6] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [2.6] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [2.6] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [2.6] - name: SLES 12 @@ -48,19 +48,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [42.x.x] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [42.x.x] - name: RHEL 7 arch: ppc64le supported versions: [42.x.x] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [42.x.x] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [42.x.x] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [42.x.x] - name: SLES 12 @@ -83,7 +83,7 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [54, 55] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [54, 55] - name: CentOS 7 @@ -95,13 +95,13 @@ products: - name: SLES 12 arch: ppc64le supported versions: [54, 55] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [54, 55] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [54, 55] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: ppc64le supported versions: [54, 55] - name: RHEL 7 @@ -124,19 +124,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [14.1.0.1] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [14.1.0.1] - name: RHEL 7 arch: ppc64le supported versions: [14.1.0.1] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [14.1.0.1] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [14.1.0.1] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [14.1.0.1] - name: SLES 12 @@ -162,19 +162,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [13.1.0.2] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [13.1.0.2] - name: RHEL 7 arch: ppc64le supported versions: [13.1.0.2] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [13.1.0.2] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [13.1.0.2] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [13.1.0.2] - name: SLES 12 @@ -200,19 +200,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - name: RHEL 7 arch: ppc64le supported versions: [1.14, 1.15, 1.16] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [1.14, 1.15, 1.16] - name: SLES 12 @@ -238,19 +238,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - name: RHEL 7 arch: ppc64le supported versions: [4.0, 4.1, 4.2, 4.3] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [4.0, 4.1, 4.2, 4.3] - name: SLES 12 @@ -276,7 +276,7 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [9.6, 10, 11, 12, 13, 14] - name: RHEL 7 @@ -285,16 +285,16 @@ products: - name: RHEL 7 arch: local supported versions: [9.6, 10, 11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: Linux on IBM Power (ppc64le) supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [13, 14] - name: SLES 12 @@ -320,19 +320,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [9.6, 11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [9.6, 11, 12, 13, 14] - name: SLES 12 @@ -358,19 +358,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - name: RHEL 7 arch: ppc64le supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - name: SLES 12 @@ -396,19 +396,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -434,19 +434,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -472,19 +472,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -510,19 +510,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 @@ -548,19 +548,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [7, 8] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [7, 8] - name: RHEL 7 arch: ppc64le supported versions: [7, 8] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [7, 8] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [7, 8] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [7, 8] - name: SLES 12 @@ -586,19 +586,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [7] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [7] - name: RHEL 7 arch: ppc64le supported versions: [7] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [7] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [7] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [7] - name: SLES 12 @@ -624,19 +624,19 @@ products: - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: RHEL 7/OL 7 + - name: RHEL 7 or OL 7 arch: x86_64 supported versions: [11, 12, 13, 14] - name: RHEL 7 arch: ppc64le supported versions: [11, 12, 13, 14] - - name: RHEL 8/OL 8 + - name: RHEL 8 or OL 8 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04/Debian 9 + - name: Ubuntu 18.04 or Debian 9 arch: x86_64 supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04/Debian 10 + - name: Ubuntu 20.04 or Debian 10 arch: x86_64 supported versions: [11, 12, 13, 14] - name: SLES 12 diff --git a/install_template/templates/platformBase/rhel-7-ol-7.njk b/install_template/templates/platformBase/rhel-7-or-ol-7.njk similarity index 100% rename from install_template/templates/platformBase/rhel-7-ol-7.njk rename to install_template/templates/platformBase/rhel-7-or-ol-7.njk diff --git a/install_template/templates/platformBase/rhel-8-ol-8.njk b/install_template/templates/platformBase/rhel-8-or-ol-8.njk similarity index 100% rename from install_template/templates/platformBase/rhel-8-ol-8.njk rename to install_template/templates/platformBase/rhel-8-or-ol-8.njk diff --git a/install_template/templates/platformBase/ubuntu-18-04-debian-9.njk b/install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk similarity index 100% rename from install_template/templates/platformBase/ubuntu-18-04-debian-9.njk rename to install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk diff --git a/install_template/templates/platformBase/ubuntu-20-04-debian-10.njk b/install_template/templates/platformBase/ubuntu-20-04-or-debian-10.njk similarity index 100% rename from install_template/templates/platformBase/ubuntu-20-04-debian-10.njk rename to install_template/templates/platformBase/ubuntu-20-04-or-debian-10.njk From f417215f1bf933a259ef36efe2969dbfd2d76c3a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 9 Mar 2022 12:22:55 -0500 Subject: [PATCH 026/180] changed centos-8 to almalinux-8-or-rocky-linux-8 --- .../edb*plus/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../postgis/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- .../{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) rename install_template/templates/products/edb*plus/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (76%) rename install_template/templates/products/edb-jdbc-connector/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) rename install_template/templates/products/edb-migrationtoolkit/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) rename install_template/templates/products/edb-oci-connector/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) rename install_template/templates/products/edb-odbc-connector/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) rename install_template/templates/products/edb-pgbouncer/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (76%) rename install_template/templates/products/edb-pgpoolii/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (76%) rename install_template/templates/products/edb-postgres-advanced-server/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (91%) rename install_template/templates/products/failover-manager/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) rename install_template/templates/products/hadoop-foreign-data-wrapper/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (78%) rename install_template/templates/products/mongodb-foreign-data-wrapper/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (78%) rename install_template/templates/products/mysql-foreign-data-wrapper/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) rename install_template/templates/products/postgis/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (76%) rename install_template/templates/products/postgres-enterprise-manager/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (78%) rename install_template/templates/products/replication-manager/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) rename install_template/templates/products/slony-replication/{centos-8.njk => almalinux-8-or-rocky-linux-8.njk} (77%) diff --git a/install_template/templates/products/edb*plus/centos-8.njk b/install_template/templates/products/edb*plus/almalinux-8-or-rocky-linux-8.njk similarity index 76% rename from install_template/templates/products/edb*plus/centos-8.njk rename to install_template/templates/products/edb*plus/almalinux-8-or-rocky-linux-8.njk index 9f51e52fdc3..b19364aa0f2 100644 --- a/install_template/templates/products/edb*plus/centos-8.njk +++ b/install_template/templates/products/edb*plus/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb*plus/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/edb-jdbc-connector/centos-8.njk b/install_template/templates/products/edb-jdbc-connector/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/edb-jdbc-connector/centos-8.njk rename to install_template/templates/products/edb-jdbc-connector/almalinux-8-or-rocky-linux-8.njk index 8aa48ff931e..6f483a059c9 100644 --- a/install_template/templates/products/edb-jdbc-connector/centos-8.njk +++ b/install_template/templates/products/edb-jdbc-connector/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-jdbc-connector/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/edb-migrationtoolkit/centos-8.njk b/install_template/templates/products/edb-migrationtoolkit/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/edb-migrationtoolkit/centos-8.njk rename to install_template/templates/products/edb-migrationtoolkit/almalinux-8-or-rocky-linux-8.njk index a3d08f71027..8c8110c9cba 100644 --- a/install_template/templates/products/edb-migrationtoolkit/centos-8.njk +++ b/install_template/templates/products/edb-migrationtoolkit/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-migrationtoolkit/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/edb-oci-connector/centos-8.njk b/install_template/templates/products/edb-oci-connector/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/edb-oci-connector/centos-8.njk rename to install_template/templates/products/edb-oci-connector/almalinux-8-or-rocky-linux-8.njk index bfd634e1ac5..0d4f4d0c0a1 100644 --- a/install_template/templates/products/edb-oci-connector/centos-8.njk +++ b/install_template/templates/products/edb-oci-connector/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/edb-odbc-connector/centos-8.njk b/install_template/templates/products/edb-odbc-connector/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/edb-odbc-connector/centos-8.njk rename to install_template/templates/products/edb-odbc-connector/almalinux-8-or-rocky-linux-8.njk index 2204fa93a94..434df4a6b4a 100644 --- a/install_template/templates/products/edb-odbc-connector/centos-8.njk +++ b/install_template/templates/products/edb-odbc-connector/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-odbc-connector/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/edb-pgbouncer/centos-8.njk b/install_template/templates/products/edb-pgbouncer/almalinux-8-or-rocky-linux-8.njk similarity index 76% rename from install_template/templates/products/edb-pgbouncer/centos-8.njk rename to install_template/templates/products/edb-pgbouncer/almalinux-8-or-rocky-linux-8.njk index 1393480dd70..189f1f855d9 100644 --- a/install_template/templates/products/edb-pgbouncer/centos-8.njk +++ b/install_template/templates/products/edb-pgbouncer/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-pgbouncer/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/edb-pgpoolii/centos-8.njk b/install_template/templates/products/edb-pgpoolii/almalinux-8-or-rocky-linux-8.njk similarity index 76% rename from install_template/templates/products/edb-pgpoolii/centos-8.njk rename to install_template/templates/products/edb-pgpoolii/almalinux-8-or-rocky-linux-8.njk index e474f410b32..73204b7cbc9 100644 --- a/install_template/templates/products/edb-pgpoolii/centos-8.njk +++ b/install_template/templates/products/edb-pgpoolii/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-pgpoolii/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/edb-postgres-advanced-server/centos-8.njk b/install_template/templates/products/edb-postgres-advanced-server/almalinux-8-or-rocky-linux-8.njk similarity index 91% rename from install_template/templates/products/edb-postgres-advanced-server/centos-8.njk rename to install_template/templates/products/edb-postgres-advanced-server/almalinux-8-or-rocky-linux-8.njk index 53ce94347a9..7570fb82e1f 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/centos-8.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-postgres-advanced-server/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/failover-manager/centos-8.njk b/install_template/templates/products/failover-manager/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/failover-manager/centos-8.njk rename to install_template/templates/products/failover-manager/almalinux-8-or-rocky-linux-8.njk index af5aabaec97..f7ed1e086c1 100644 --- a/install_template/templates/products/failover-manager/centos-8.njk +++ b/install_template/templates/products/failover-manager/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/failover-manager/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-8.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk similarity index 78% rename from install_template/templates/products/hadoop-foreign-data-wrapper/centos-8.njk rename to install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk index c32d677f948..7aa6155aa47 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-8.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/centos-8.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk similarity index 78% rename from install_template/templates/products/mongodb-foreign-data-wrapper/centos-8.njk rename to install_template/templates/products/mongodb-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk index 3d9e44b00ae..8bcd927e031 100644 --- a/install_template/templates/products/mongodb-foreign-data-wrapper/centos-8.njk +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/mongodb-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/centos-8.njk b/install_template/templates/products/mysql-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/mysql-foreign-data-wrapper/centos-8.njk rename to install_template/templates/products/mysql-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk index e987add22cb..6a52895a4e5 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/centos-8.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/postgis/centos-8.njk b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk similarity index 76% rename from install_template/templates/products/postgis/centos-8.njk rename to install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk index 4cc743628e9..16aa508638d 100644 --- a/install_template/templates/products/postgis/centos-8.njk +++ b/install_template/templates/products/postgis/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/postgis/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/postgres-enterprise-manager/centos-8.njk b/install_template/templates/products/postgres-enterprise-manager/almalinux-8-or-rocky-linux-8.njk similarity index 78% rename from install_template/templates/products/postgres-enterprise-manager/centos-8.njk rename to install_template/templates/products/postgres-enterprise-manager/almalinux-8-or-rocky-linux-8.njk index 15db9e9c398..8bd483dec71 100644 --- a/install_template/templates/products/postgres-enterprise-manager/centos-8.njk +++ b/install_template/templates/products/postgres-enterprise-manager/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/postgres-enterprise-manager/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/replication-manager/centos-8.njk b/install_template/templates/products/replication-manager/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/replication-manager/centos-8.njk rename to install_template/templates/products/replication-manager/almalinux-8-or-rocky-linux-8.njk index 02c8d09e360..38bf92e85b2 100644 --- a/install_template/templates/products/replication-manager/centos-8.njk +++ b/install_template/templates/products/replication-manager/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/replication-manager/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: diff --git a/install_template/templates/products/slony-replication/centos-8.njk b/install_template/templates/products/slony-replication/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/slony-replication/centos-8.njk rename to install_template/templates/products/slony-replication/almalinux-8-or-rocky-linux-8.njk index b9113d02dfa..cc88958c019 100644 --- a/install_template/templates/products/slony-replication/centos-8.njk +++ b/install_template/templates/products/slony-replication/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,5 @@ {% extends "products/slony-replication/base.njk" %} -{% set platformBaseTemplate = "centos-8" %} +{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} 1. Disable the built-in PostgreSQL module: From f01cf2687b2e9756bd810c677c3b27d90dcff3e9 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 09:44:37 -0500 Subject: [PATCH 027/180] change files names and file references from rhel-7. to rhel-7-or-ol-7 --- install_template/templates/products/edb*plus/rhel-7-or-ol-7.njk | 2 ++ .../templates/products/edb*plus/rhel-7-or-ol-7_ppc64le.njk | 2 ++ install_template/templates/products/edb*plus/rhel-7.njk | 2 -- install_template/templates/products/edb*plus/rhel-7_ppc64le.njk | 2 -- .../products/edb-bart/{rhel-7.njk => rhel-7-or-ol-7.njk} | 0 .../templates/products/edb-bart/rhel-7-or-ol-7_ppc64le.njk | 2 ++ install_template/templates/products/edb-bart/rhel-7_ppc64le.njk | 2 -- .../edb-jdbc-connector/{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../products/edb-jdbc-connector/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk | 2 -- .../edb-migrationtoolkit/{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../products/edb-migrationtoolkit/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk | 2 -- .../edb-oci-connector/{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../products/edb-oci-connector/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../templates/products/edb-oci-connector/rhel-7_ppc64le.njk | 2 -- .../edb-odbc-connector/{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../products/edb-odbc-connector/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../templates/products/edb-odbc-connector/rhel-7_ppc64le.njk | 2 -- .../templates/products/edb-pgbouncer/rhel-7-or-ol-7.njk | 2 ++ .../templates/products/edb-pgbouncer/rhel-7-or-ol-7_ppc64le.njk | 2 ++ install_template/templates/products/edb-pgbouncer/rhel-7.njk | 2 -- .../templates/products/edb-pgbouncer/rhel-7_ppc64le.njk | 2 -- .../templates/products/edb-pgpoolii/rhel-7-or-ol-7.njk | 2 ++ .../templates/products/edb-pgpoolii/rhel-7-or-ol-7_ppc64le.njk | 2 ++ install_template/templates/products/edb-pgpoolii/rhel-7.njk | 2 -- .../templates/products/edb-pgpoolii/rhel-7_ppc64le.njk | 2 -- .../{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../edb-postgres-advanced-server/rhel-7-or-ol-7_local.njk | 2 ++ .../{rhel-7_ppc64le.njk => rhel-7-or-ol-7_ppc64le.njk} | 2 +- .../products/edb-postgres-advanced-server/rhel-7_local.njk | 2 -- .../failover-manager/{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../products/failover-manager/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../templates/products/failover-manager/rhel-7_ppc64le.njk | 2 -- .../{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk | 2 -- .../{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../mongodb-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk | 2 -- .../{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../mysql-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk | 2 -- install_template/templates/products/postgis/rhel-7-or-ol-7.njk | 2 ++ .../templates/products/postgis/rhel-7-or-ol-7_ppc64le.njk | 2 ++ install_template/templates/products/postgis/rhel-7.njk | 2 -- install_template/templates/products/postgis/rhel-7_ppc64le.njk | 2 -- .../{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../postgres-enterprise-manager/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../products/postgres-enterprise-manager/rhel-7_ppc64le.njk | 2 -- .../replication-manager/{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../products/replication-manager/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../templates/products/replication-manager/rhel-7_ppc64le.njk | 2 -- .../slony-replication/{rhel-7.njk => rhel-7-or-ol-7.njk} | 2 +- .../products/slony-replication/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../templates/products/slony-replication/rhel-7_ppc64le.njk | 2 -- 56 files changed, 55 insertions(+), 55 deletions(-) create mode 100644 install_template/templates/products/edb*plus/rhel-7-or-ol-7.njk create mode 100644 install_template/templates/products/edb*plus/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb*plus/rhel-7.njk delete mode 100644 install_template/templates/products/edb*plus/rhel-7_ppc64le.njk rename install_template/templates/products/edb-bart/{rhel-7.njk => rhel-7-or-ol-7.njk} (100%) create mode 100644 install_template/templates/products/edb-bart/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-bart/rhel-7_ppc64le.njk rename install_template/templates/products/edb-jdbc-connector/{rhel-7.njk => rhel-7-or-ol-7.njk} (51%) create mode 100644 install_template/templates/products/edb-jdbc-connector/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk rename install_template/templates/products/edb-migrationtoolkit/{rhel-7.njk => rhel-7-or-ol-7.njk} (52%) create mode 100644 install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk rename install_template/templates/products/edb-oci-connector/{rhel-7.njk => rhel-7-or-ol-7.njk} (51%) create mode 100644 install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk rename install_template/templates/products/edb-odbc-connector/{rhel-7.njk => rhel-7-or-ol-7.njk} (51%) create mode 100644 install_template/templates/products/edb-odbc-connector/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7.njk create mode 100644 install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-pgbouncer/rhel-7.njk delete mode 100644 install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7.njk create mode 100644 install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-pgpoolii/rhel-7.njk delete mode 100644 install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk rename install_template/templates/products/edb-postgres-advanced-server/{rhel-7.njk => rhel-7-or-ol-7.njk} (88%) create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7_local.njk rename install_template/templates/products/edb-postgres-advanced-server/{rhel-7_ppc64le.njk => rhel-7-or-ol-7_ppc64le.njk} (57%) delete mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk rename install_template/templates/products/failover-manager/{rhel-7.njk => rhel-7-or-ol-7.njk} (51%) create mode 100644 install_template/templates/products/failover-manager/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/failover-manager/rhel-7_ppc64le.njk rename install_template/templates/products/hadoop-foreign-data-wrapper/{rhel-7.njk => rhel-7-or-ol-7.njk} (55%) create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk rename install_template/templates/products/mongodb-foreign-data-wrapper/{rhel-7.njk => rhel-7-or-ol-7.njk} (56%) create mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk rename install_template/templates/products/mysql-foreign-data-wrapper/{rhel-7.njk => rhel-7-or-ol-7.njk} (55%) create mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk create mode 100644 install_template/templates/products/postgis/rhel-7-or-ol-7.njk create mode 100644 install_template/templates/products/postgis/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/postgis/rhel-7.njk delete mode 100644 install_template/templates/products/postgis/rhel-7_ppc64le.njk rename install_template/templates/products/postgres-enterprise-manager/{rhel-7.njk => rhel-7-or-ol-7.njk} (55%) create mode 100644 install_template/templates/products/postgres-enterprise-manager/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk rename install_template/templates/products/replication-manager/{rhel-7.njk => rhel-7-or-ol-7.njk} (52%) create mode 100644 install_template/templates/products/replication-manager/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/replication-manager/rhel-7_ppc64le.njk rename install_template/templates/products/slony-replication/{rhel-7.njk => rhel-7-or-ol-7.njk} (51%) create mode 100644 install_template/templates/products/slony-replication/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/slony-replication/rhel-7_ppc64le.njk diff --git a/install_template/templates/products/edb*plus/rhel-7-or-ol-7.njk b/install_template/templates/products/edb*plus/rhel-7-or-ol-7.njk new file mode 100644 index 00000000000..992aaeb60dc --- /dev/null +++ b/install_template/templates/products/edb*plus/rhel-7-or-ol-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb*plus/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..c9ece0c831c --- /dev/null +++ b/install_template/templates/products/edb*plus/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/rhel-7.njk b/install_template/templates/products/edb*plus/rhel-7.njk deleted file mode 100644 index fbcc95f03d7..00000000000 --- a/install_template/templates/products/edb*plus/rhel-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb*plus/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/rhel-7_ppc64le.njk b/install_template/templates/products/edb*plus/rhel-7_ppc64le.njk deleted file mode 100644 index a53d9c8a43b..00000000000 --- a/install_template/templates/products/edb*plus/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb*plus/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/rhel-7.njk b/install_template/templates/products/edb-bart/rhel-7-or-ol-7.njk similarity index 100% rename from install_template/templates/products/edb-bart/rhel-7.njk rename to install_template/templates/products/edb-bart/rhel-7-or-ol-7.njk diff --git a/install_template/templates/products/edb-bart/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-bart/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..d2772dbb891 --- /dev/null +++ b/install_template/templates/products/edb-bart/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/rhel-7_ppc64le.njk b/install_template/templates/products/edb-bart/rhel-7_ppc64le.njk deleted file mode 100644 index 8bc640008f7..00000000000 --- a/install_template/templates/products/edb-bart/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-bart/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/rhel-7.njk b/install_template/templates/products/edb-jdbc-connector/rhel-7-or-ol-7.njk similarity index 51% rename from install_template/templates/products/edb-jdbc-connector/rhel-7.njk rename to install_template/templates/products/edb-jdbc-connector/rhel-7-or-ol-7.njk index baec0a866e3..545d66585d3 100644 --- a/install_template/templates/products/edb-jdbc-connector/rhel-7.njk +++ b/install_template/templates/products/edb-jdbc-connector/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/edb-jdbc-connector/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..f5b18889610 --- /dev/null +++ b/install_template/templates/products/edb-jdbc-connector/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-jdbc-connector/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk deleted file mode 100644 index 2c1711d3824..00000000000 --- a/install_template/templates/products/edb-jdbc-connector/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-jdbc-connector/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-7.njk b/install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7.njk similarity index 52% rename from install_template/templates/products/edb-migrationtoolkit/rhel-7.njk rename to install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7.njk index 6c29a00a703..307cbb64ca0 100644 --- a/install_template/templates/products/edb-migrationtoolkit/rhel-7.njk +++ b/install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/edb-migrationtoolkit/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..99126fb7f76 --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk b/install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk deleted file mode 100644 index 77d7911c6ab..00000000000 --- a/install_template/templates/products/edb-migrationtoolkit/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-migrationtoolkit/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/rhel-7.njk b/install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7.njk similarity index 51% rename from install_template/templates/products/edb-oci-connector/rhel-7.njk rename to install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7.njk index 3392073dc6d..d6ada410952 100644 --- a/install_template/templates/products/edb-oci-connector/rhel-7.njk +++ b/install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..3a71c0a2bda --- /dev/null +++ b/install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-oci-connector/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk b/install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk deleted file mode 100644 index 6a629226a78..00000000000 --- a/install_template/templates/products/edb-oci-connector/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-oci-connector/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/rhel-7.njk b/install_template/templates/products/edb-odbc-connector/rhel-7-or-ol-7.njk similarity index 51% rename from install_template/templates/products/edb-odbc-connector/rhel-7.njk rename to install_template/templates/products/edb-odbc-connector/rhel-7-or-ol-7.njk index 851b896240d..284ebd1b458 100644 --- a/install_template/templates/products/edb-odbc-connector/rhel-7.njk +++ b/install_template/templates/products/edb-odbc-connector/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/edb-odbc-connector/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-odbc-connector/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..b3ee612762e --- /dev/null +++ b/install_template/templates/products/edb-odbc-connector/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-odbc-connector/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk b/install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk deleted file mode 100644 index f1c1f9201c1..00000000000 --- a/install_template/templates/products/edb-odbc-connector/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-odbc-connector/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7.njk new file mode 100644 index 00000000000..415e2a0a9d0 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..8764abd165c --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-7.njk b/install_template/templates/products/edb-pgbouncer/rhel-7.njk deleted file mode 100644 index 949e08ace3a..00000000000 --- a/install_template/templates/products/edb-pgbouncer/rhel-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-pgbouncer/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk b/install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk deleted file mode 100644 index d550d7e6aa5..00000000000 --- a/install_template/templates/products/edb-pgbouncer/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-pgbouncer/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7.njk new file mode 100644 index 00000000000..51c924f89e9 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..0428d5bdcc4 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-7.njk b/install_template/templates/products/edb-pgpoolii/rhel-7.njk deleted file mode 100644 index b2fbb9001ec..00000000000 --- a/install_template/templates/products/edb-pgpoolii/rhel-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-pgpoolii/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk b/install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk deleted file mode 100644 index e6626a334fd..00000000000 --- a/install_template/templates/products/edb-pgpoolii/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-pgpoolii/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7.njk similarity index 88% rename from install_template/templates/products/edb-postgres-advanced-server/rhel-7.njk rename to install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7.njk index 31523669ec0..989c8c5b739 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-7.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7.njk @@ -1,5 +1,5 @@ {% extends "products/edb-postgres-advanced-server/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} {% block installCommand %} {{ super() }} {% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7_local.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7_local.njk new file mode 100644 index 00000000000..2c29868f09c --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7_local.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-postgres-advanced-server/rhel-7-or-ol-7.njk" %} +{% set includeLOCAL = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7_ppc64le.njk similarity index 57% rename from install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk rename to install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7_ppc64le.njk index 930150d6d4d..ceeebb5337b 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_ppc64le.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-7-or-ol-7_ppc64le.njk @@ -1,4 +1,4 @@ -{% extends "products/edb-postgres-advanced-server/rhel-7.njk" %} +{% extends "products/edb-postgres-advanced-server/rhel-7-or-ol-7.njk" %} {% set includePPC = true %} {% block installCommand %} {{ super() }} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk deleted file mode 100644 index fbf07f4bc34..00000000000 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-7_local.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-postgres-advanced-server/rhel-7.njk" %} -{% set includeLOCAL = true %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/rhel-7.njk b/install_template/templates/products/failover-manager/rhel-7-or-ol-7.njk similarity index 51% rename from install_template/templates/products/failover-manager/rhel-7.njk rename to install_template/templates/products/failover-manager/rhel-7-or-ol-7.njk index 8196d5c5ad4..19d0ff7e1a7 100644 --- a/install_template/templates/products/failover-manager/rhel-7.njk +++ b/install_template/templates/products/failover-manager/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/failover-manager/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/failover-manager/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..8b763313fa7 --- /dev/null +++ b/install_template/templates/products/failover-manager/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/failover-manager/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/rhel-7_ppc64le.njk b/install_template/templates/products/failover-manager/rhel-7_ppc64le.njk deleted file mode 100644 index c0fcb6e8f97..00000000000 --- a/install_template/templates/products/failover-manager/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/failover-manager/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk similarity index 55% rename from install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7.njk rename to install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk index 47b83ea72cd..f82dec09351 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..032a94b5151 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk deleted file mode 100644 index 5a27ca28545..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7.njk similarity index 56% rename from install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7.njk rename to install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7.njk index a5783157042..68affb9166b 100644 --- a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7.njk +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/mongodb-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..114fc0ef1b3 --- /dev/null +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mongodb-foreign-data-wrapper/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk deleted file mode 100644 index e9a65001740..00000000000 --- a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/mongodb-foreign-data-wrapper/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk similarity index 55% rename from install_template/templates/products/mysql-foreign-data-wrapper/rhel-7.njk rename to install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk index 40d20ade839..3e29f41d483 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..19bebf87857 --- /dev/null +++ b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk deleted file mode 100644 index 8896f56cf0d..00000000000 --- a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/mysql-foreign-data-wrapper/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-7-or-ol-7.njk b/install_template/templates/products/postgis/rhel-7-or-ol-7.njk new file mode 100644 index 00000000000..85e4bbe5ba7 --- /dev/null +++ b/install_template/templates/products/postgis/rhel-7-or-ol-7.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/postgis/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..4e7737ac703 --- /dev/null +++ b/install_template/templates/products/postgis/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-7.njk b/install_template/templates/products/postgis/rhel-7.njk deleted file mode 100644 index 8dd1202f3ce..00000000000 --- a/install_template/templates/products/postgis/rhel-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/postgis/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-7_ppc64le.njk b/install_template/templates/products/postgis/rhel-7_ppc64le.njk deleted file mode 100644 index 682caee12a4..00000000000 --- a/install_template/templates/products/postgis/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/postgis/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/rhel-7.njk b/install_template/templates/products/postgres-enterprise-manager/rhel-7-or-ol-7.njk similarity index 55% rename from install_template/templates/products/postgres-enterprise-manager/rhel-7.njk rename to install_template/templates/products/postgres-enterprise-manager/rhel-7-or-ol-7.njk index 519e1de974d..3ce509d892d 100644 --- a/install_template/templates/products/postgres-enterprise-manager/rhel-7.njk +++ b/install_template/templates/products/postgres-enterprise-manager/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/postgres-enterprise-manager/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/postgres-enterprise-manager/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..f4dddc560a1 --- /dev/null +++ b/install_template/templates/products/postgres-enterprise-manager/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/postgres-enterprise-manager/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk b/install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk deleted file mode 100644 index ba942bbfd22..00000000000 --- a/install_template/templates/products/postgres-enterprise-manager/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/postgres-enterprise-manager/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/rhel-7.njk b/install_template/templates/products/replication-manager/rhel-7-or-ol-7.njk similarity index 52% rename from install_template/templates/products/replication-manager/rhel-7.njk rename to install_template/templates/products/replication-manager/rhel-7-or-ol-7.njk index 23f479fdb79..6f45c5ad4bf 100644 --- a/install_template/templates/products/replication-manager/rhel-7.njk +++ b/install_template/templates/products/replication-manager/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/replication-manager/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/replication-manager/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..79d15d47dd7 --- /dev/null +++ b/install_template/templates/products/replication-manager/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/replication-manager/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/rhel-7_ppc64le.njk b/install_template/templates/products/replication-manager/rhel-7_ppc64le.njk deleted file mode 100644 index 1f162a8d745..00000000000 --- a/install_template/templates/products/replication-manager/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/replication-manager/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/rhel-7.njk b/install_template/templates/products/slony-replication/rhel-7-or-ol-7.njk similarity index 51% rename from install_template/templates/products/slony-replication/rhel-7.njk rename to install_template/templates/products/slony-replication/rhel-7-or-ol-7.njk index 3466801e5e2..753e1c856d3 100644 --- a/install_template/templates/products/slony-replication/rhel-7.njk +++ b/install_template/templates/products/slony-replication/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ {% extends "products/slony-replication/base.njk" %} -{% set platformBaseTemplate = "rhel-7" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/slony-replication/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..e114375d0e7 --- /dev/null +++ b/install_template/templates/products/slony-replication/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/slony-replication/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/rhel-7_ppc64le.njk b/install_template/templates/products/slony-replication/rhel-7_ppc64le.njk deleted file mode 100644 index 99203c4554d..00000000000 --- a/install_template/templates/products/slony-replication/rhel-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/slony-replication/rhel-7.njk" %} -{% set includePPC = true %} \ No newline at end of file From 8375e63b04ef214649ec43503af5869aac86e8fc Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 10:04:15 -0500 Subject: [PATCH 028/180] change product file names and references from rhel-8 to rhell-8-or-ol-8 Kept an EPAS file called rhel-8-or-centos-8-or-ol-8 but I'm not sure what it's doing --- install_template/templates/products/edb*plus/rhel-8-or-ol-8.njk | 2 ++ install_template/templates/products/edb*plus/rhel-8.njk | 2 -- install_template/templates/products/edb-bart/rhel-8-or-ol-8.njk | 2 ++ install_template/templates/products/edb-bart/rhel-8.njk | 2 -- .../edb-jdbc-connector/{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../edb-migrationtoolkit/{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../edb-oci-connector/{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../edb-odbc-connector/{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../templates/products/edb-pgbouncer/rhel-8-or-ol-8.njk | 2 ++ install_template/templates/products/edb-pgbouncer/rhel-8.njk | 2 -- .../templates/products/edb-pgpoolii/rhel-8-or-ol-8.njk | 2 ++ install_template/templates/products/edb-pgpoolii/rhel-8.njk | 2 -- .../edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk | 2 +- .../{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../edb-postgres-advanced-server/rhel-8-or-ol-8_ppc64le.njk | 2 ++ .../rhel-8_Linux on IBM Power (ppc64le).njk | 2 -- .../failover-manager/{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- install_template/templates/products/postgis/rhel-8-or-ol-8.njk | 2 ++ install_template/templates/products/postgis/rhel-8.njk | 2 -- .../{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../replication-manager/{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- .../slony-replication/{rhel-8.njk => rhel-8-or-ol-8.njk} | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 install_template/templates/products/edb*plus/rhel-8-or-ol-8.njk delete mode 100644 install_template/templates/products/edb*plus/rhel-8.njk create mode 100644 install_template/templates/products/edb-bart/rhel-8-or-ol-8.njk delete mode 100644 install_template/templates/products/edb-bart/rhel-8.njk rename install_template/templates/products/edb-jdbc-connector/{rhel-8.njk => rhel-8-or-ol-8.njk} (51%) rename install_template/templates/products/edb-migrationtoolkit/{rhel-8.njk => rhel-8-or-ol-8.njk} (52%) rename install_template/templates/products/edb-oci-connector/{rhel-8.njk => rhel-8-or-ol-8.njk} (51%) rename install_template/templates/products/edb-odbc-connector/{rhel-8.njk => rhel-8-or-ol-8.njk} (51%) create mode 100644 install_template/templates/products/edb-pgbouncer/rhel-8-or-ol-8.njk delete mode 100644 install_template/templates/products/edb-pgbouncer/rhel-8.njk create mode 100644 install_template/templates/products/edb-pgpoolii/rhel-8-or-ol-8.njk delete mode 100644 install_template/templates/products/edb-pgpoolii/rhel-8.njk rename install_template/templates/products/edb-postgres-advanced-server/{rhel-8.njk => rhel-8-or-ol-8.njk} (88%) create mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8_ppc64le.njk delete mode 100644 install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk rename install_template/templates/products/failover-manager/{rhel-8.njk => rhel-8-or-ol-8.njk} (51%) rename install_template/templates/products/hadoop-foreign-data-wrapper/{rhel-8.njk => rhel-8-or-ol-8.njk} (55%) rename install_template/templates/products/mongodb-foreign-data-wrapper/{rhel-8.njk => rhel-8-or-ol-8.njk} (56%) rename install_template/templates/products/mysql-foreign-data-wrapper/{rhel-8.njk => rhel-8-or-ol-8.njk} (55%) create mode 100644 install_template/templates/products/postgis/rhel-8-or-ol-8.njk delete mode 100644 install_template/templates/products/postgis/rhel-8.njk rename install_template/templates/products/postgres-enterprise-manager/{rhel-8.njk => rhel-8-or-ol-8.njk} (55%) rename install_template/templates/products/replication-manager/{rhel-8.njk => rhel-8-or-ol-8.njk} (52%) rename install_template/templates/products/slony-replication/{rhel-8.njk => rhel-8-or-ol-8.njk} (51%) diff --git a/install_template/templates/products/edb*plus/rhel-8-or-ol-8.njk b/install_template/templates/products/edb*plus/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..e376bbbd3de --- /dev/null +++ b/install_template/templates/products/edb*plus/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb*plus/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/rhel-8.njk b/install_template/templates/products/edb*plus/rhel-8.njk deleted file mode 100644 index 0902f8ac2af..00000000000 --- a/install_template/templates/products/edb*plus/rhel-8.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb*plus/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-bart/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..455eb7bf31f --- /dev/null +++ b/install_template/templates/products/edb-bart/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-bart/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-bart/rhel-8.njk b/install_template/templates/products/edb-bart/rhel-8.njk deleted file mode 100644 index cba258c3556..00000000000 --- a/install_template/templates/products/edb-bart/rhel-8.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-bart/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/rhel-8.njk b/install_template/templates/products/edb-jdbc-connector/rhel-8-or-ol-8.njk similarity index 51% rename from install_template/templates/products/edb-jdbc-connector/rhel-8.njk rename to install_template/templates/products/edb-jdbc-connector/rhel-8-or-ol-8.njk index b49dee09cf7..bb766031edd 100644 --- a/install_template/templates/products/edb-jdbc-connector/rhel-8.njk +++ b/install_template/templates/products/edb-jdbc-connector/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/edb-jdbc-connector/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-8.njk b/install_template/templates/products/edb-migrationtoolkit/rhel-8-or-ol-8.njk similarity index 52% rename from install_template/templates/products/edb-migrationtoolkit/rhel-8.njk rename to install_template/templates/products/edb-migrationtoolkit/rhel-8-or-ol-8.njk index 85807a17b21..58232c4c727 100644 --- a/install_template/templates/products/edb-migrationtoolkit/rhel-8.njk +++ b/install_template/templates/products/edb-migrationtoolkit/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/edb-migrationtoolkit/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/rhel-8.njk b/install_template/templates/products/edb-oci-connector/rhel-8-or-ol-8.njk similarity index 51% rename from install_template/templates/products/edb-oci-connector/rhel-8.njk rename to install_template/templates/products/edb-oci-connector/rhel-8-or-ol-8.njk index 2759992fd79..6b30a458d99 100644 --- a/install_template/templates/products/edb-oci-connector/rhel-8.njk +++ b/install_template/templates/products/edb-oci-connector/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-odbc-connector/rhel-8.njk b/install_template/templates/products/edb-odbc-connector/rhel-8-or-ol-8.njk similarity index 51% rename from install_template/templates/products/edb-odbc-connector/rhel-8.njk rename to install_template/templates/products/edb-odbc-connector/rhel-8-or-ol-8.njk index 5adcac2aa88..32ec589eb1d 100644 --- a/install_template/templates/products/edb-odbc-connector/rhel-8.njk +++ b/install_template/templates/products/edb-odbc-connector/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/edb-odbc-connector/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-pgbouncer/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..262082bf7a7 --- /dev/null +++ b/install_template/templates/products/edb-pgbouncer/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgbouncer/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgbouncer/rhel-8.njk b/install_template/templates/products/edb-pgbouncer/rhel-8.njk deleted file mode 100644 index 28c9704e0fa..00000000000 --- a/install_template/templates/products/edb-pgbouncer/rhel-8.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-pgbouncer/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-pgpoolii/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..eaae22b3e1c --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/rhel-8.njk b/install_template/templates/products/edb-pgpoolii/rhel-8.njk deleted file mode 100644 index 39cb1c7dd4f..00000000000 --- a/install_template/templates/products/edb-pgpoolii/rhel-8.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-pgpoolii/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk index 38ed706acd9..54997b7ac49 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-centos-8-or-ol-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-postgres-advanced-server/base.njk" %} -{% set platformBaseTemplate = "rhel-8-centos-8-ol-8" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} {% block installCommand %} {{ super() }} {% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk similarity index 88% rename from install_template/templates/products/edb-postgres-advanced-server/rhel-8.njk rename to install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk index 0cc2e6b4490..54997b7ac49 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-8.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk @@ -1,5 +1,5 @@ {% extends "products/edb-postgres-advanced-server/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} {% block installCommand %} {{ super() }} {% include "products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk" %} diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8_ppc64le.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8_ppc64le.njk new file mode 100644 index 00000000000..e887d463646 --- /dev/null +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk deleted file mode 100644 index 68bead10da1..00000000000 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-8_Linux on IBM Power (ppc64le).njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-postgres-advanced-server/rhel-8.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/rhel-8.njk b/install_template/templates/products/failover-manager/rhel-8-or-ol-8.njk similarity index 51% rename from install_template/templates/products/failover-manager/rhel-8.njk rename to install_template/templates/products/failover-manager/rhel-8-or-ol-8.njk index 8e97190785d..43a82c48b44 100644 --- a/install_template/templates/products/failover-manager/rhel-8.njk +++ b/install_template/templates/products/failover-manager/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/failover-manager/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk similarity index 55% rename from install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8.njk rename to install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk index e256453b612..c19c16f990d 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8.njk b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8-or-ol-8.njk similarity index 56% rename from install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8.njk rename to install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8-or-ol-8.njk index fc462f266f6..a546248f815 100644 --- a/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8.njk +++ b/install_template/templates/products/mongodb-foreign-data-wrapper/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/mongodb-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-8.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-8-or-ol-8.njk similarity index 55% rename from install_template/templates/products/mysql-foreign-data-wrapper/rhel-8.njk rename to install_template/templates/products/mysql-foreign-data-wrapper/rhel-8-or-ol-8.njk index 3a89cdcd003..cd91fd8d8d3 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-8.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-8-or-ol-8.njk b/install_template/templates/products/postgis/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..70648b65b0d --- /dev/null +++ b/install_template/templates/products/postgis/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/postgis/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/rhel-8.njk b/install_template/templates/products/postgis/rhel-8.njk deleted file mode 100644 index 9adbf5474ed..00000000000 --- a/install_template/templates/products/postgis/rhel-8.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/postgis/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/rhel-8.njk b/install_template/templates/products/postgres-enterprise-manager/rhel-8-or-ol-8.njk similarity index 55% rename from install_template/templates/products/postgres-enterprise-manager/rhel-8.njk rename to install_template/templates/products/postgres-enterprise-manager/rhel-8-or-ol-8.njk index 7938dd4c9e7..c030a2ee0bb 100644 --- a/install_template/templates/products/postgres-enterprise-manager/rhel-8.njk +++ b/install_template/templates/products/postgres-enterprise-manager/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/postgres-enterprise-manager/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/replication-manager/rhel-8.njk b/install_template/templates/products/replication-manager/rhel-8-or-ol-8.njk similarity index 52% rename from install_template/templates/products/replication-manager/rhel-8.njk rename to install_template/templates/products/replication-manager/rhel-8-or-ol-8.njk index b998d510370..1124d209322 100644 --- a/install_template/templates/products/replication-manager/rhel-8.njk +++ b/install_template/templates/products/replication-manager/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/replication-manager/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/slony-replication/rhel-8.njk b/install_template/templates/products/slony-replication/rhel-8-or-ol-8.njk similarity index 51% rename from install_template/templates/products/slony-replication/rhel-8.njk rename to install_template/templates/products/slony-replication/rhel-8-or-ol-8.njk index 8a7d77be9b6..8653e095df4 100644 --- a/install_template/templates/products/slony-replication/rhel-8.njk +++ b/install_template/templates/products/slony-replication/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ {% extends "products/slony-replication/base.njk" %} -{% set platformBaseTemplate = "rhel-8" %} \ No newline at end of file +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file From 6c0ecf71d183efd1caee020a50630e5cd6332959 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 11:06:13 -0500 Subject: [PATCH 029/180] Removed Bart and slony from config.yaml, commented out everything except migration toolkit, adjusted names in MTK for debian and ubuntu --- install_template/config.yaml | 1152 ++++++++--------- .../edb-migrationtoolkit/debian-10.njk | 2 +- .../edb-migrationtoolkit/debian-9.njk | 2 +- .../edb-migrationtoolkit/ubuntu-18.04.njk | 2 +- 4 files changed, 541 insertions(+), 617 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 8d11ae78e50..51cbe4594c5 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,80 +1,42 @@ products: - - name: EDB BART - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [2.6] - - name: CentOS 7 - arch: ppc64le - supported versions: [2.6] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [2.6] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [2.6] - - name: RHEL 7 - arch: ppc64le - supported versions: [2.6] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [2.6] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [2.6] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [2.6] - - name: SLES 12 - arch: x86_64 - supported versions: [2.6] - - name: SLES 12 - arch: ppc64le - supported versions: [2.6] - - name: SLES 15 - arch: x86_64 - supported versions: [2.6] - - name: SLES 15 - arch: ppc64le - supported versions: [2.6] - - name: EDB JDBC Connector - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [42.x.x] - - name: CentOS 7 - arch: ppc64le - supported versions: [42.x.x] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [42.x.x] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [42.x.x] - - name: RHEL 7 - arch: ppc64le - supported versions: [42.x.x] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [42.x.x] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [42.x.x] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [42.x.x] - - name: SLES 12 - arch: x86_64 - supported versions: [42.x.x] - - name: SLES 12 - arch: ppc64le - supported versions: [42.x.x] - - name: SLES 15 - arch: x86_64 - supported versions: [42.x.x] - - name: SLES 15 - arch: ppc64le - supported versions: [42.x.x] + # - name: EDB JDBC Connector + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [42.x.x] - name: EDB MigrationToolkit platforms: - name: RHEL 8 or OL 8 @@ -113,544 +75,506 @@ products: - name: SLES 12 arch: x86_64 supported versions: [54, 55] - - name: EDB OCI Connector - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [14.1.0.1] - - name: CentOS 7 - arch: ppc64le - supported versions: [14.1.0.1] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [14.1.0.1] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [14.1.0.1] - - name: RHEL 7 - arch: ppc64le - supported versions: [14.1.0.1] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [14.1.0.1] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [14.1.0.1] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [14.1.0.1] - - name: SLES 12 - arch: x86_64 - supported versions: [14.1.0.1] - - name: SLES 12 - arch: ppc64le - supported versions: [14.1.0.1] - - name: SLES 15 - arch: x86_64 - supported versions: [14.1.0.1] - - name: SLES 15 - arch: ppc64le - supported versions: [14.1.0.1] - - name: EDB ODBC Connector - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [13.1.0.2] - - name: CentOS 7 - arch: ppc64le - supported versions: [13.1.0.2] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [13.1.0.2] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [13.1.0.2] - - name: RHEL 7 - arch: ppc64le - supported versions: [13.1.0.2] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [13.1.0.2] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [13.1.0.2] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [13.1.0.2] - - name: SLES 12 - arch: x86_64 - supported versions: [13.1.0.2] - - name: SLES 12 - arch: ppc64le - supported versions: [13.1.0.2] - - name: SLES 15 - arch: x86_64 - supported versions: [13.1.0.2] - - name: SLES 15 - arch: ppc64le - supported versions: [13.1.0.2] - - name: EDB pgBouncer - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: CentOS 7 - arch: ppc64le - supported versions: [1.14, 1.15, 1.16] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: RHEL 7 - arch: ppc64le - supported versions: [1.14, 1.15, 1.16] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: SLES 12 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: SLES 12 - arch: ppc64le - supported versions: [1.14, 1.15, 1.16] - - name: SLES 15 - arch: x86_64 - supported versions: [1.14, 1.15, 1.16] - - name: SLES 15 - arch: ppc64le - supported versions: [1.14, 1.15, 1.16] - - name: EDB PgpoolII - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: CentOS 7 - arch: ppc64le - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: RHEL 7 - arch: ppc64le - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: SLES 12 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: SLES 12 - arch: ppc64le - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: SLES 15 - arch: x86_64 - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: SLES 15 - arch: ppc64le - supported versions: [4.0, 4.1, 4.2, 4.3] - - name: EDB Postgres Advanced Server - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [9.6, 10, 11, 12, 13, 14] - - name: CentOS 7 - arch: ppc64le - supported versions: [9.6, 10, 11, 12, 13, 14] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [9.6, 10, 11, 12, 13, 14] - - name: RHEL 7 - arch: ppc64le - supported versions: [9.6, 10, 11, 12, 13, 14] - - name: RHEL 7 - arch: local - supported versions: [9.6, 10, 11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: Linux on IBM Power (ppc64le) - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 15 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 12 - arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 15 - arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] - - name: EDB*Plus - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: CentOS 7 - arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: RHEL 7 - arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 12 - arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 15 - arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 15 - arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] - - name: Failover Manager - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: CentOS 7 - arch: ppc64le - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: RHEL 7 - arch: ppc64le - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: SLES 12 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: SLES 12 - arch: ppc64le - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: SLES 15 - arch: x86_64 - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: SLES 15 - arch: ppc64le - supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: Hadoop Foreign Data Wrapper - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: CentOS 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: MongoDB Foreign Data Wrapper - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: CentOS 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: MySQL Foreign Data Wrapper - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: CentOS 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: PostGIS - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: CentOS 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: Postgres Enterprise Manager - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [7, 8] - - name: CentOS 7 - arch: ppc64le - supported versions: [7, 8] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [7, 8] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [7, 8] - - name: RHEL 7 - arch: ppc64le - supported versions: [7, 8] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [7, 8] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [7, 8] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [7, 8] - - name: SLES 12 - arch: x86_64 - supported versions: [7, 8] - - name: SLES 15 - arch: x86_64 - supported versions: [7, 8] - - name: SLES 12 - arch: ppc64le - supported versions: [7, 8] - - name: SLES 15 - arch: ppc64le - supported versions: [7, 8] - - name: Replication Manager - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [7] - - name: CentOS 7 - arch: ppc64le - supported versions: [7] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [7] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [7] - - name: RHEL 7 - arch: ppc64le - supported versions: [7] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [7] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [7] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [7] - - name: SLES 12 - arch: x86_64 - supported versions: [7] - - name: SLES 12 - arch: ppc64le - supported versions: [7] - - name: SLES 15 - arch: x86_64 - supported versions: [7] - - name: SLES 15 - arch: ppc64le - supported versions: [7] - - name: Slony Replication - platforms: - - name: CentOS 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: CentOS 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: RHEL 7 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: ppc64le - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: x86_64 - supported versions: [11, 12, 13, 14] - - name: SLES 15 - arch: ppc64le - supported versions: [11, 12, 13, 14] + # - name: EDB OCI Connector + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: EDB ODBC Connector + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [13.1.0.2] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [13.1.0.2] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [13.1.0.2] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [13.1.0.2] + # - name: EDB pgBouncer + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [1.14, 1.15, 1.16] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [1.14, 1.15, 1.16] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [1.14, 1.15, 1.16] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [1.14, 1.15, 1.16] + # - name: EDB PgpoolII + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: EDB Postgres Advanced Server + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [9.6, 10, 11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [9.6, 10, 11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [9.6, 10, 11, 12, 13, 14] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [9.6, 10, 11, 12, 13, 14] + # - name: RHEL 7 + # arch: local + # supported versions: [9.6, 10, 11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: Linux on IBM Power (ppc64le) + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [13, 14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [9.6, 11, 12, 13, 14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [9.6, 11, 12, 13, 14] + # - name: EDB*Plus + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [9.6, 11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [9.6, 11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [9.6, 11, 12, 13, 14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [9.6, 11, 12, 13, 14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [9.6, 11, 12, 13, 14] + # - name: Failover Manager + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: Hadoop Foreign Data Wrapper + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: MongoDB Foreign Data Wrapper + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: MySQL Foreign Data Wrapper + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: PostGIS + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: Postgres Enterprise Manager + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [7, 8] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [7, 8] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [7, 8] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [7, 8] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [7, 8] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [7, 8] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [7, 8] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [7, 8] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [7, 8] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [7, 8] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [7, 8] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [7, 8] + # - name: Replication Manager + # platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [7] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [7] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [7] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [7] + # - name: RHEL 7 + # arch: ppc64le + # supported versions: [7] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [7] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [7] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [7] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [7] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [7] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [7] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [7] diff --git a/install_template/templates/products/edb-migrationtoolkit/debian-10.njk b/install_template/templates/products/edb-migrationtoolkit/debian-10.njk index b548674225f..e1547a0f8dd 100644 --- a/install_template/templates/products/edb-migrationtoolkit/debian-10.njk +++ b/install_template/templates/products/edb-migrationtoolkit/debian-10.njk @@ -1,2 +1,2 @@ {% extends "products/edb-migrationtoolkit/base.njk" %} -{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file +{% set platformBaseTemplate = "ubuntu-20-04-or-debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/debian-9.njk b/install_template/templates/products/edb-migrationtoolkit/debian-9.njk index 920969960c6..02af83867b7 100644 --- a/install_template/templates/products/edb-migrationtoolkit/debian-9.njk +++ b/install_template/templates/products/edb-migrationtoolkit/debian-9.njk @@ -1,2 +1,2 @@ {% extends "products/edb-migrationtoolkit/base.njk" %} -{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file +{% set platformBaseTemplate = "ubuntu-18-04-or-debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk index b1010ce48bd..fc9617c287c 100644 --- a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk +++ b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk @@ -1 +1 @@ -{% extends "products/edb-migrationtoolkit/debian-10.njk" %} +{% extends "products/edb-migrationtoolkit/debian-9.njk" %} From 994803f2b4892d783999b7f8348cf6bd744a9e1a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 11:22:26 -0500 Subject: [PATCH 030/180] renamed debian files in products folder to ubuntu and debian --- .../{debian-9.njk => ubuntu-18-04-or-debian-9.njk} | 0 .../templates/products/edb-migrationtoolkit/ubuntu-18.04.njk | 2 +- .../{debian-10.njk => ubuntu-20-04-or-debian-10.njk} | 0 .../templates/products/edb-migrationtoolkit/ubuntu-20.04.njk | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename install_template/templates/products/edb-migrationtoolkit/{debian-9.njk => ubuntu-18-04-or-debian-9.njk} (100%) rename install_template/templates/products/edb-migrationtoolkit/{debian-10.njk => ubuntu-20-04-or-debian-10.njk} (100%) diff --git a/install_template/templates/products/edb-migrationtoolkit/debian-9.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/debian-9.njk rename to install_template/templates/products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk index fc9617c287c..e441e646adc 100644 --- a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk +++ b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk @@ -1 +1 @@ -{% extends "products/edb-migrationtoolkit/debian-9.njk" %} +{% extends "products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk" %} diff --git a/install_template/templates/products/edb-migrationtoolkit/debian-10.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/debian-10.njk rename to install_template/templates/products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk index b1010ce48bd..e995f02d676 100644 --- a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk +++ b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk @@ -1 +1 @@ -{% extends "products/edb-migrationtoolkit/debian-10.njk" %} +{% extends "products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk" %} From aaa06fb8fe0673f72c6b178d761cd1e6e754a8e8 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 11:33:18 -0500 Subject: [PATCH 031/180] Experimenting with naming of debian and ubuntu --- .../templates/platformBase/ubuntu-18-04-or-debian-9.njk | 2 +- .../templates/products/edb-migrationtoolkit/ubuntu-18.04.njk | 1 - .../templates/products/edb-migrationtoolkit/ubuntu-20.04.njk | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk delete mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk diff --git a/install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk b/install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk index be5fb1535fa..5c8f3fd128a 100644 --- a/install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk +++ b/install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk @@ -1,4 +1,4 @@ -{% extends "platformBase/debian-10.njk" %} +{% extends "platformBase/ubuntu-20-04-or-debian-10.njk" %} {% block repoAuth %} # Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk deleted file mode 100644 index e441e646adc..00000000000 --- a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04.njk +++ /dev/null @@ -1 +0,0 @@ -{% extends "products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk" %} diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk deleted file mode 100644 index e995f02d676..00000000000 --- a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04.njk +++ /dev/null @@ -1 +0,0 @@ -{% extends "products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk" %} From 96f2ceab12d71d51a8fcbf5fd2f21b75324ce093 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 11:36:29 -0500 Subject: [PATCH 032/180] more experiments with names of debian, ubuntu --- ...buntu-18-04-or-debian-9.njk => ubuntu-18.04-or-debian-9.njk} | 2 +- ...ntu-20-04-or-debian-10.njk => ubuntu-20.04-or-debian-10.njk} | 0 .../products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk | 2 -- .../products/edb-migrationtoolkit/ubuntu-18.04-or-debian-9.njk | 2 ++ .../products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk | 2 -- .../products/edb-migrationtoolkit/ubuntu-20.04-or-debian-10.njk | 2 ++ 6 files changed, 5 insertions(+), 5 deletions(-) rename install_template/templates/platformBase/{ubuntu-18-04-or-debian-9.njk => ubuntu-18.04-or-debian-9.njk} (87%) rename install_template/templates/platformBase/{ubuntu-20-04-or-debian-10.njk => ubuntu-20.04-or-debian-10.njk} (100%) delete mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04-or-debian-9.njk delete mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk create mode 100644 install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04-or-debian-10.njk diff --git a/install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk b/install_template/templates/platformBase/ubuntu-18.04-or-debian-9.njk similarity index 87% rename from install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk rename to install_template/templates/platformBase/ubuntu-18.04-or-debian-9.njk index 5c8f3fd128a..c6a59145432 100644 --- a/install_template/templates/platformBase/ubuntu-18-04-or-debian-9.njk +++ b/install_template/templates/platformBase/ubuntu-18.04-or-debian-9.njk @@ -1,4 +1,4 @@ -{% extends "platformBase/ubuntu-20-04-or-debian-10.njk" %} +{% extends "platformBase/ubuntu-20.04-or-debian-10.njk" %} {% block repoAuth %} # Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories diff --git a/install_template/templates/platformBase/ubuntu-20-04-or-debian-10.njk b/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk similarity index 100% rename from install_template/templates/platformBase/ubuntu-20-04-or-debian-10.njk rename to install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk deleted file mode 100644 index 02af83867b7..00000000000 --- a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18-04-or-debian-9.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} -{% set platformBaseTemplate = "ubuntu-18-04-or-debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04-or-debian-9.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04-or-debian-9.njk new file mode 100644 index 00000000000..ca2119c9e09 --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04-or-debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "ubuntu-18.04-or-debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk deleted file mode 100644 index e1547a0f8dd..00000000000 --- a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20-04-or-debian-10.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} -{% set platformBaseTemplate = "ubuntu-20-04-or-debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04-or-debian-10.njk b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04-or-debian-10.njk new file mode 100644 index 00000000000..fb903cc0678 --- /dev/null +++ b/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04-or-debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-migrationtoolkit/base.njk" %} +{% set platformBaseTemplate = "ubuntu-20.04-or-debian-10" %} \ No newline at end of file From 1a5c755fb24bd68b348b119f42a126762b30d9f3 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 11:40:28 -0500 Subject: [PATCH 033/180] modified rhel 7 entry --- install_template/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 51cbe4594c5..ce2a5e31a4a 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -66,7 +66,7 @@ products: - name: RHEL 8 or OL 8 arch: ppc64le supported versions: [54, 55] - - name: RHEL 7 + - name: RHEL 7 or OL 7 arch: ppc64le supported versions: [54, 55] - name: SLES 15 From 7ba799da022a63a7f85f976a8ee32d1ecb381ba4 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 10 Mar 2022 11:44:03 -0500 Subject: [PATCH 034/180] updated rhel 7 entry for ppc for all products in config.yaml --- install_template/config.yaml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index ce2a5e31a4a..756a0c3b142 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -13,7 +13,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [42.x.x] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [42.x.x] # - name: RHEL 8 or OL 8 @@ -89,7 +89,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [14.1.0.1] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [14.1.0.1] # - name: RHEL 8 or OL 8 @@ -127,7 +127,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [13.1.0.2] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [13.1.0.2] # - name: RHEL 8 or OL 8 @@ -165,7 +165,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [1.14, 1.15, 1.16] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [1.14, 1.15, 1.16] # - name: RHEL 8 or OL 8 @@ -203,7 +203,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [4.0, 4.1, 4.2, 4.3] # - name: RHEL 8 or OL 8 @@ -241,10 +241,10 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [9.6, 10, 11, 12, 13, 14] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [9.6, 10, 11, 12, 13, 14] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: local # supported versions: [9.6, 10, 11, 12, 13, 14] # - name: RHEL 8 or OL 8 @@ -285,7 +285,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [9.6, 11, 12, 13, 14] # - name: RHEL 8 or OL 8 @@ -323,7 +323,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] # - name: RHEL 8 or OL 8 @@ -361,7 +361,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [11, 12, 13, 14] # - name: RHEL 8 or OL 8 @@ -399,7 +399,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [11, 12, 13, 14] # - name: RHEL 8 or OL 8 @@ -437,7 +437,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [11, 12, 13, 14] # - name: RHEL 8 or OL 8 @@ -475,7 +475,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [11, 12, 13, 14] # - name: RHEL 8 or OL 8 @@ -513,7 +513,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [7, 8] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [7, 8] # - name: RHEL 8 or OL 8 @@ -551,7 +551,7 @@ products: # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [7] - # - name: RHEL 7 + # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [7] # - name: RHEL 8 or OL 8 From 57ef1a285ca4d3284a508a65eedd8d67fc9de3ad Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 14 Mar 2022 08:49:06 -0400 Subject: [PATCH 035/180] Experimenting with text in post-install block --- install_template/templates/platformBase/base.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index fe08cae13f2..80be2a61b43 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -28,5 +28,5 @@ Before setting up the repository, you need to register with EDB. To receive cred ## Initial Configuration -{% block postinstall %}{% endblock postinstall %} +{% block postinstall %}No initial configuration is necessary for {{ platform.name }} on {{ platform.arch }}.{% endblock postinstall %} From 14e2ca1de3dec2de8ca4468a5f55c91f892b72da Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 14 Mar 2022 12:03:43 -0400 Subject: [PATCH 036/180] Tweaks to SLES templates --- install_template/config.yaml | 2 +- install_template/templates/platformBase/base.njk | 2 +- install_template/templates/platformBase/sles-12.njk | 1 + install_template/templates/platformBase/sles-15.njk | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 756a0c3b142..53cef13efed 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -37,7 +37,7 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [42.x.x] - - name: EDB MigrationToolkit + - name: EDB Migration Toolkit platforms: - name: RHEL 8 or OL 8 arch: x86_64 diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 80be2a61b43..fe08cae13f2 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -28,5 +28,5 @@ Before setting up the repository, you need to register with EDB. To receive cred ## Initial Configuration -{% block postinstall %}No initial configuration is necessary for {{ platform.name }} on {{ platform.arch }}.{% endblock postinstall %} +{% block postinstall %}{% endblock postinstall %} diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 7f77e1b452c..d104960a971 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,5 +1,6 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 0fce9b6718d..c38fdfd0e4d 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,5 +1,6 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted From ad185b082a4816982d7f5e012447c0e110f1410c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 14 Mar 2022 12:17:29 -0400 Subject: [PATCH 037/180] added a space in the name of migration toolkit --- .../almalinux-8-or-rocky-linux-8.njk | 0 .../{edb-migrationtoolkit => edb-migration-toolkit}/base.njk | 0 .../{edb-migrationtoolkit => edb-migration-toolkit}/centos-7.njk | 0 .../centos-7_ppc64le.njk | 0 .../rhel-7-or-ol-7.njk | 0 .../rhel-7-or-ol-7_ppc64le.njk | 0 .../rhel-8-or-ol-8.njk | 0 .../{edb-migrationtoolkit => edb-migration-toolkit}/sles-12.njk | 0 .../{edb-migrationtoolkit => edb-migration-toolkit}/sles-15.njk | 0 .../sles-15_ppc64le.njk | 0 .../ubuntu-18.04-or-debian-9.njk | 0 .../ubuntu-20.04-or-debian-10.njk | 0 12 files changed, 0 insertions(+), 0 deletions(-) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/almalinux-8-or-rocky-linux-8.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/base.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/centos-7.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/centos-7_ppc64le.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/rhel-7-or-ol-7.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/rhel-7-or-ol-7_ppc64le.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/rhel-8-or-ol-8.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/sles-12.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/sles-15.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/sles-15_ppc64le.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/ubuntu-18.04-or-debian-9.njk (100%) rename install_template/templates/products/{edb-migrationtoolkit => edb-migration-toolkit}/ubuntu-20.04-or-debian-10.njk (100%) diff --git a/install_template/templates/products/edb-migrationtoolkit/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-migration-toolkit/almalinux-8-or-rocky-linux-8.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/almalinux-8-or-rocky-linux-8.njk rename to install_template/templates/products/edb-migration-toolkit/almalinux-8-or-rocky-linux-8.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/base.njk b/install_template/templates/products/edb-migration-toolkit/base.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/base.njk rename to install_template/templates/products/edb-migration-toolkit/base.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/centos-7.njk b/install_template/templates/products/edb-migration-toolkit/centos-7.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/centos-7.njk rename to install_template/templates/products/edb-migration-toolkit/centos-7.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/centos-7_ppc64le.njk b/install_template/templates/products/edb-migration-toolkit/centos-7_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/centos-7_ppc64le.njk rename to install_template/templates/products/edb-migration-toolkit/centos-7_ppc64le.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7.njk rename to install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/rhel-7-or-ol-7_ppc64le.njk rename to install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7_ppc64le.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-migration-toolkit/rhel-8-or-ol-8.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/rhel-8-or-ol-8.njk rename to install_template/templates/products/edb-migration-toolkit/rhel-8-or-ol-8.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/sles-12.njk b/install_template/templates/products/edb-migration-toolkit/sles-12.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/sles-12.njk rename to install_template/templates/products/edb-migration-toolkit/sles-12.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/sles-15.njk b/install_template/templates/products/edb-migration-toolkit/sles-15.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/sles-15.njk rename to install_template/templates/products/edb-migration-toolkit/sles-15.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/sles-15_ppc64le.njk b/install_template/templates/products/edb-migration-toolkit/sles-15_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/sles-15_ppc64le.njk rename to install_template/templates/products/edb-migration-toolkit/sles-15_ppc64le.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04-or-debian-9.njk b/install_template/templates/products/edb-migration-toolkit/ubuntu-18.04-or-debian-9.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/ubuntu-18.04-or-debian-9.njk rename to install_template/templates/products/edb-migration-toolkit/ubuntu-18.04-or-debian-9.njk diff --git a/install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04-or-debian-10.njk b/install_template/templates/products/edb-migration-toolkit/ubuntu-20.04-or-debian-10.njk similarity index 100% rename from install_template/templates/products/edb-migrationtoolkit/ubuntu-20.04-or-debian-10.njk rename to install_template/templates/products/edb-migration-toolkit/ubuntu-20.04-or-debian-10.njk From e5f262e01c22b57eb7cbb3dd0b13c423b143c8e7 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 14 Mar 2022 12:21:08 -0400 Subject: [PATCH 038/180] removed edb from name of migration toolkit --- install_template/config.yaml | 2 +- .../almalinux-8-or-rocky-linux-8.njk | 0 .../{edb-migration-toolkit => migration-toolkit}/base.njk | 0 .../{edb-migration-toolkit => migration-toolkit}/centos-7.njk | 0 .../centos-7_ppc64le.njk | 0 .../rhel-7-or-ol-7.njk | 0 .../rhel-7-or-ol-7_ppc64le.njk | 0 .../rhel-8-or-ol-8.njk | 0 .../{edb-migration-toolkit => migration-toolkit}/sles-12.njk | 0 .../{edb-migration-toolkit => migration-toolkit}/sles-15.njk | 0 .../sles-15_ppc64le.njk | 0 .../ubuntu-18.04-or-debian-9.njk | 0 .../ubuntu-20.04-or-debian-10.njk | 0 13 files changed, 1 insertion(+), 1 deletion(-) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/almalinux-8-or-rocky-linux-8.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/base.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/centos-7.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/centos-7_ppc64le.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/rhel-7-or-ol-7.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/rhel-7-or-ol-7_ppc64le.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/rhel-8-or-ol-8.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/sles-12.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/sles-15.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/sles-15_ppc64le.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/ubuntu-18.04-or-debian-9.njk (100%) rename install_template/templates/products/{edb-migration-toolkit => migration-toolkit}/ubuntu-20.04-or-debian-10.njk (100%) diff --git a/install_template/config.yaml b/install_template/config.yaml index 53cef13efed..88b43c0e539 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -37,7 +37,7 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [42.x.x] - - name: EDB Migration Toolkit + - name: Migration Toolkit platforms: - name: RHEL 8 or OL 8 arch: x86_64 diff --git a/install_template/templates/products/edb-migration-toolkit/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/migration-toolkit/almalinux-8-or-rocky-linux-8.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/almalinux-8-or-rocky-linux-8.njk rename to install_template/templates/products/migration-toolkit/almalinux-8-or-rocky-linux-8.njk diff --git a/install_template/templates/products/edb-migration-toolkit/base.njk b/install_template/templates/products/migration-toolkit/base.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/base.njk rename to install_template/templates/products/migration-toolkit/base.njk diff --git a/install_template/templates/products/edb-migration-toolkit/centos-7.njk b/install_template/templates/products/migration-toolkit/centos-7.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/centos-7.njk rename to install_template/templates/products/migration-toolkit/centos-7.njk diff --git a/install_template/templates/products/edb-migration-toolkit/centos-7_ppc64le.njk b/install_template/templates/products/migration-toolkit/centos-7_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/centos-7_ppc64le.njk rename to install_template/templates/products/migration-toolkit/centos-7_ppc64le.njk diff --git a/install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7.njk b/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7.njk rename to install_template/templates/products/migration-toolkit/rhel-7-or-ol-7.njk diff --git a/install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/rhel-7-or-ol-7_ppc64le.njk rename to install_template/templates/products/migration-toolkit/rhel-7-or-ol-7_ppc64le.njk diff --git a/install_template/templates/products/edb-migration-toolkit/rhel-8-or-ol-8.njk b/install_template/templates/products/migration-toolkit/rhel-8-or-ol-8.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/rhel-8-or-ol-8.njk rename to install_template/templates/products/migration-toolkit/rhel-8-or-ol-8.njk diff --git a/install_template/templates/products/edb-migration-toolkit/sles-12.njk b/install_template/templates/products/migration-toolkit/sles-12.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/sles-12.njk rename to install_template/templates/products/migration-toolkit/sles-12.njk diff --git a/install_template/templates/products/edb-migration-toolkit/sles-15.njk b/install_template/templates/products/migration-toolkit/sles-15.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/sles-15.njk rename to install_template/templates/products/migration-toolkit/sles-15.njk diff --git a/install_template/templates/products/edb-migration-toolkit/sles-15_ppc64le.njk b/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/sles-15_ppc64le.njk rename to install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk diff --git a/install_template/templates/products/edb-migration-toolkit/ubuntu-18.04-or-debian-9.njk b/install_template/templates/products/migration-toolkit/ubuntu-18.04-or-debian-9.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/ubuntu-18.04-or-debian-9.njk rename to install_template/templates/products/migration-toolkit/ubuntu-18.04-or-debian-9.njk diff --git a/install_template/templates/products/edb-migration-toolkit/ubuntu-20.04-or-debian-10.njk b/install_template/templates/products/migration-toolkit/ubuntu-20.04-or-debian-10.njk similarity index 100% rename from install_template/templates/products/edb-migration-toolkit/ubuntu-20.04-or-debian-10.njk rename to install_template/templates/products/migration-toolkit/ubuntu-20.04-or-debian-10.njk From b90240c9d35596c26b8e563ed4e22550d70498af Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 14 Mar 2022 12:25:12 -0400 Subject: [PATCH 039/180] Removed supported version 54 --- install_template/config.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 88b43c0e539..5f33d2d65bc 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -41,40 +41,40 @@ products: platforms: - name: RHEL 8 or OL 8 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] - name: RHEL 7 or OL 7 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] - name: CentOS 7 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] - name: SLES 15 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] - name: SLES 12 arch: ppc64le - supported versions: [54, 55] + supported versions: [55] - name: Ubuntu 20.04 or Debian 10 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] - name: Ubuntu 18.04 or Debian 9 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] - name: RHEL 8 or OL 8 arch: ppc64le - supported versions: [54, 55] + supported versions: [55] - name: RHEL 7 or OL 7 arch: ppc64le - supported versions: [54, 55] + supported versions: [55] - name: SLES 15 arch: ppc64le - supported versions: [54, 55] + supported versions: [55] - name: SLES 12 arch: x86_64 - supported versions: [54, 55] + supported versions: [55] # - name: EDB OCI Connector # platforms: # - name: CentOS 7 From 8eccc90c183420b349e9bab8d3d1ce56b688256c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 15 Mar 2022 06:06:35 -0400 Subject: [PATCH 040/180] updated path to folder for all files in products folder --- .../products/migration-toolkit/almalinux-8-or-rocky-linux-8.njk | 2 +- .../templates/products/migration-toolkit/centos-7.njk | 2 +- .../templates/products/migration-toolkit/centos-7_ppc64le.njk | 2 +- .../templates/products/migration-toolkit/rhel-7-or-ol-7.njk | 2 +- .../products/migration-toolkit/rhel-7-or-ol-7_ppc64le.njk | 2 +- .../templates/products/migration-toolkit/rhel-8-or-ol-8.njk | 2 +- .../templates/products/migration-toolkit/sles-12.njk | 2 +- .../templates/products/migration-toolkit/sles-15.njk | 2 +- .../templates/products/migration-toolkit/sles-15_ppc64le.njk | 2 +- .../products/migration-toolkit/ubuntu-18.04-or-debian-9.njk | 2 +- .../products/migration-toolkit/ubuntu-20.04-or-debian-10.njk | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/install_template/templates/products/migration-toolkit/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/migration-toolkit/almalinux-8-or-rocky-linux-8.njk index 8c8110c9cba..f5ca87d0297 100644 --- a/install_template/templates/products/migration-toolkit/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/migration-toolkit/almalinux-8-or-rocky-linux-8.njk @@ -1,4 +1,4 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} diff --git a/install_template/templates/products/migration-toolkit/centos-7.njk b/install_template/templates/products/migration-toolkit/centos-7.njk index 1a6cb37e73b..dcdf228e846 100644 --- a/install_template/templates/products/migration-toolkit/centos-7.njk +++ b/install_template/templates/products/migration-toolkit/centos-7.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/centos-7_ppc64le.njk b/install_template/templates/products/migration-toolkit/centos-7_ppc64le.njk index 725607ba18c..0a0b88d3ff2 100644 --- a/install_template/templates/products/migration-toolkit/centos-7_ppc64le.njk +++ b/install_template/templates/products/migration-toolkit/centos-7_ppc64le.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/centos-7.njk" %} +{% extends "products/migration-toolkit/centos-7.njk" %} {% set includePPC = true %} diff --git a/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7.njk b/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7.njk index 307cbb64ca0..e06371d0aff 100644 --- a/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7.njk +++ b/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7_ppc64le.njk index 99126fb7f76..e6f0f2d98ab 100644 --- a/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7_ppc64le.njk +++ b/install_template/templates/products/migration-toolkit/rhel-7-or-ol-7_ppc64le.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/rhel-7-or-ol-7.njk" %} +{% extends "products/migration-toolkit/rhel-7-or-ol-7.njk" %} {% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/rhel-8-or-ol-8.njk b/install_template/templates/products/migration-toolkit/rhel-8-or-ol-8.njk index 58232c4c727..7205ecad861 100644 --- a/install_template/templates/products/migration-toolkit/rhel-8-or-ol-8.njk +++ b/install_template/templates/products/migration-toolkit/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/sles-12.njk b/install_template/templates/products/migration-toolkit/sles-12.njk index 2f007c1080b..10ba722d276 100644 --- a/install_template/templates/products/migration-toolkit/sles-12.njk +++ b/install_template/templates/products/migration-toolkit/sles-12.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/sles-15.njk b/install_template/templates/products/migration-toolkit/sles-15.njk index a820d232a0a..2b75009b1db 100644 --- a/install_template/templates/products/migration-toolkit/sles-15.njk +++ b/install_template/templates/products/migration-toolkit/sles-15.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk b/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk index cac76c482df..7a2eab13fef 100644 --- a/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk +++ b/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk @@ -1,3 +1,3 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/ubuntu-18.04-or-debian-9.njk b/install_template/templates/products/migration-toolkit/ubuntu-18.04-or-debian-9.njk index ca2119c9e09..31802c6b054 100644 --- a/install_template/templates/products/migration-toolkit/ubuntu-18.04-or-debian-9.njk +++ b/install_template/templates/products/migration-toolkit/ubuntu-18.04-or-debian-9.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "ubuntu-18.04-or-debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/ubuntu-20.04-or-debian-10.njk b/install_template/templates/products/migration-toolkit/ubuntu-20.04-or-debian-10.njk index fb903cc0678..95688d2aa85 100644 --- a/install_template/templates/products/migration-toolkit/ubuntu-20.04-or-debian-10.njk +++ b/install_template/templates/products/migration-toolkit/ubuntu-20.04-or-debian-10.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-migrationtoolkit/base.njk" %} +{% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "ubuntu-20.04-or-debian-10" %} \ No newline at end of file From 49aefc63f1593c1179ba5553397cd0b92ac6a6b6 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 15 Mar 2022 06:22:14 -0400 Subject: [PATCH 041/180] tweaked line breaks in comments --- install_template/templates/platformBase/sles-15.njk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index c38fdfd0e4d..0292c75ee6a 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -6,11 +6,13 @@ Setting up the repository is a one time task. If you have already set up your re # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module From ec591d285c6345f5ed4eed030fb5521cddc297df Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 15 Mar 2022 09:34:26 -0400 Subject: [PATCH 042/180] added SLES topics for JDBC Connector --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 5f33d2d65bc..f196992cb19 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,6 +1,6 @@ products: - # - name: EDB JDBC Connector - # platforms: + - name: EDB JDBC Connector + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [42.x.x] @@ -25,18 +25,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [42.x.x] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [42.x.x] + - name: SLES 12 + arch: x86_64 + supported versions: [42.x.x] + - name: SLES 12 + arch: ppc64le + supported versions: [42.x.x] + - name: SLES 15 + arch: x86_64 + supported versions: [42.x.x] + - name: SLES 15 + arch: ppc64le + supported versions: [42.x.x] - name: Migration Toolkit platforms: - name: RHEL 8 or OL 8 From 9396d503d70082680158a8373ea93785640c8f41 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 15 Mar 2022 09:46:55 -0400 Subject: [PATCH 043/180] adding SLES topics for Hadoop FDW, changing name for Hadoop --- install_template/config.yaml | 56 +++++++++---------- .../almalinux-8-or-rocky-linux-8.njk | 2 +- .../base.njk | 0 .../centos-7.njk | 2 + .../centos-7_ppc64le.njk | 2 + .../debian-10.njk | 2 + .../debian-9.njk | 2 + .../rhel-7-or-ol-7.njk | 2 + .../rhel-7-or-ol-7_ppc64le.njk | 2 + .../rhel-8-or-ol-8.njk | 2 + .../sles-12.njk | 2 + .../sles-12_ppc64le.njk | 2 + .../sles-15.njk | 2 + .../sles-15_ppc64le.njk | 2 +- .../ubuntu-18.04.njk | 1 + .../ubuntu-20.04.njk | 1 + .../hadoop-foreign-data-wrapper/centos-7.njk | 2 - .../centos-7_ppc64le.njk | 2 - .../hadoop-foreign-data-wrapper/debian-10.njk | 2 - .../hadoop-foreign-data-wrapper/debian-9.njk | 2 - .../rhel-7-or-ol-7.njk | 2 - .../rhel-7-or-ol-7_ppc64le.njk | 2 - .../rhel-8-or-ol-8.njk | 2 - .../hadoop-foreign-data-wrapper/sles-12.njk | 2 - .../sles-12_ppc64le.njk | 2 - .../hadoop-foreign-data-wrapper/sles-15.njk | 2 - .../ubuntu-18.04.njk | 1 - .../ubuntu-20.04.njk | 1 - 28 files changed, 52 insertions(+), 52 deletions(-) rename install_template/templates/products/{hadoop-foreign-data-wrapper => edb-hadoop-foreign-data-wrapper}/almalinux-8-or-rocky-linux-8.njk (77%) rename install_template/templates/products/{hadoop-foreign-data-wrapper => edb-hadoop-foreign-data-wrapper}/base.njk (100%) create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk rename install_template/templates/products/{hadoop-foreign-data-wrapper => edb-hadoop-foreign-data-wrapper}/sles-15_ppc64le.njk (51%) create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk delete mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk diff --git a/install_template/config.yaml b/install_template/config.yaml index f196992cb19..27fabcd29b7 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,6 +1,6 @@ products: - - name: EDB JDBC Connector - platforms: + # - name: EDB JDBC Connector + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [42.x.x] @@ -25,18 +25,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [42.x.x] - - name: SLES 12 - arch: x86_64 - supported versions: [42.x.x] - - name: SLES 12 - arch: ppc64le - supported versions: [42.x.x] - - name: SLES 15 - arch: x86_64 - supported versions: [42.x.x] - - name: SLES 15 - arch: ppc64le - supported versions: [42.x.x] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [42.x.x] - name: Migration Toolkit platforms: - name: RHEL 8 or OL 8 @@ -347,8 +347,8 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: Hadoop Foreign Data Wrapper - # platforms: + - name: EDB Hadoop Foreign Data Wrapper + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -373,18 +373,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [11, 12, 13, 14] # - name: MongoDB Foreign Data Wrapper # platforms: # - name: CentOS 7 diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk rename to install_template/templates/products/edb-hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk index 7aa6155aa47..487b08bbd96 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk @@ -1,4 +1,4 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/base.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/base.njk similarity index 100% rename from install_template/templates/products/hadoop-foreign-data-wrapper/base.njk rename to install_template/templates/products/edb-hadoop-foreign-data-wrapper/base.njk diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk new file mode 100644 index 00000000000..154a6afb809 --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk new file mode 100644 index 00000000000..162c1f2cfc3 --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk new file mode 100644 index 00000000000..ef19693c1fb --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk new file mode 100644 index 00000000000..c184e892641 --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk new file mode 100644 index 00000000000..d8e8876c558 --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..27be040e5bd --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..a0de445eaa2 --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk new file mode 100644 index 00000000000..09b26ca7bec --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk new file mode 100644 index 00000000000..09b26ca7bec --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk new file mode 100644 index 00000000000..5d53fa3832c --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15_ppc64le.njk similarity index 51% rename from install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk rename to install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15_ppc64le.njk index e63b992e7a4..d1cebabfff4 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15_ppc64le.njk @@ -1,3 +1,3 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk new file mode 100644 index 00000000000..e56578c3bdc --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk new file mode 100644 index 00000000000..e56578c3bdc --- /dev/null +++ b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk deleted file mode 100644 index 1d2ae335746..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk deleted file mode 100644 index efaa9c2e7dd..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/centos-7.njk" %} -{% set includePPC = true %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk deleted file mode 100644 index 5dba7ec69db..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk deleted file mode 100644 index a08d36cc6db..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk deleted file mode 100644 index f82dec09351..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk deleted file mode 100644 index 032a94b5151..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk deleted file mode 100644 index c19c16f990d..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk deleted file mode 100644 index 84b9ff1f885..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk deleted file mode 100644 index 84b9ff1f885..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk deleted file mode 100644 index c48b6c0e36b..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk deleted file mode 100644 index ded5f976c67..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk +++ /dev/null @@ -1 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk deleted file mode 100644 index ded5f976c67..00000000000 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk +++ /dev/null @@ -1 +0,0 @@ -{% extends "products/hadoop-foreign-data-wrapper/debian-10.njk" %} From 49d3c744a60508c587ff63a1aae1fb2285f8d92b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 15 Mar 2022 11:43:29 -0400 Subject: [PATCH 044/180] minor capitalization issues --- install_template/templates/platformBase/base.njk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index fe08cae13f2..d99a863414f 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -18,15 +18,15 @@ sudo su - Before setting up the repository, you need to 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 +## Setting up the repository {% block prerequisites %}{% endblock prerequisites %} -## Installing the Package +## Installing the package {% block installCommand %}{% endblock installCommand %} -## Initial Configuration +## Initial configuration {% block postinstall %}{% endblock postinstall %} From 1337ccb0bacd6346a49922d9e635f28974520f17 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 15 Mar 2022 11:49:40 -0400 Subject: [PATCH 045/180] removed EDB from name of Hadoop After some conversation with Dee Dee. This renaming is a project for another day. --- install_template/config.yaml | 2 +- .../products/edb-hadoop-foreign-data-wrapper/centos-7.njk | 2 -- .../edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk | 2 -- .../products/edb-hadoop-foreign-data-wrapper/debian-10.njk | 2 -- .../products/edb-hadoop-foreign-data-wrapper/debian-9.njk | 2 -- .../products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk | 2 -- .../edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk | 2 -- .../products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk | 2 -- .../products/edb-hadoop-foreign-data-wrapper/sles-12.njk | 2 -- .../edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk | 2 -- .../products/edb-hadoop-foreign-data-wrapper/sles-15.njk | 2 -- .../products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk | 1 - .../products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk | 1 - .../almalinux-8-or-rocky-linux-8.njk | 2 +- .../base.njk | 0 .../templates/products/hadoop-foreign-data-wrapper/centos-7.njk | 2 ++ .../products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk | 2 ++ .../products/hadoop-foreign-data-wrapper/debian-10.njk | 2 ++ .../templates/products/hadoop-foreign-data-wrapper/debian-9.njk | 2 ++ .../products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk | 2 ++ .../hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk | 2 ++ .../products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk | 2 ++ .../templates/products/hadoop-foreign-data-wrapper/sles-12.njk | 2 ++ .../products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk | 2 ++ .../templates/products/hadoop-foreign-data-wrapper/sles-15.njk | 2 ++ .../sles-15_ppc64le.njk | 2 +- .../products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk | 1 + .../products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk | 1 + 28 files changed, 25 insertions(+), 25 deletions(-) delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk delete mode 100644 install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk rename install_template/templates/products/{edb-hadoop-foreign-data-wrapper => hadoop-foreign-data-wrapper}/almalinux-8-or-rocky-linux-8.njk (77%) rename install_template/templates/products/{edb-hadoop-foreign-data-wrapper => hadoop-foreign-data-wrapper}/base.njk (100%) create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk rename install_template/templates/products/{edb-hadoop-foreign-data-wrapper => hadoop-foreign-data-wrapper}/sles-15_ppc64le.njk (51%) create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk create mode 100644 install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk diff --git a/install_template/config.yaml b/install_template/config.yaml index 27fabcd29b7..5f31bfc2e9a 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -347,7 +347,7 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: EDB Hadoop Foreign Data Wrapper + - name: Hadoop Foreign Data Wrapper platforms: # - name: CentOS 7 # arch: x86_64 diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk deleted file mode 100644 index 154a6afb809..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk deleted file mode 100644 index 162c1f2cfc3..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/centos-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/centos-7.njk" %} -{% set includePPC = true %} diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk deleted file mode 100644 index ef19693c1fb..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-10.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk deleted file mode 100644 index c184e892641..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/debian-9.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk deleted file mode 100644 index d8e8876c558..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk deleted file mode 100644 index 27be040e5bd..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk" %} -{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk deleted file mode 100644 index a0de445eaa2..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk deleted file mode 100644 index 09b26ca7bec..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk deleted file mode 100644 index 09b26ca7bec..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-12_ppc64le.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk deleted file mode 100644 index 5d53fa3832c..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15.njk +++ /dev/null @@ -1,2 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk deleted file mode 100644 index e56578c3bdc..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-18.04.njk +++ /dev/null @@ -1 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk b/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk deleted file mode 100644 index e56578c3bdc..00000000000 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/ubuntu-20.04.njk +++ /dev/null @@ -1 +0,0 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk similarity index 77% rename from install_template/templates/products/edb-hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk rename to install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk index 487b08bbd96..7aa6155aa47 100644 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/almalinux-8-or-rocky-linux-8.njk @@ -1,4 +1,4 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/base.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/base.njk similarity index 100% rename from install_template/templates/products/edb-hadoop-foreign-data-wrapper/base.njk rename to install_template/templates/products/hadoop-foreign-data-wrapper/base.njk diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk new file mode 100644 index 00000000000..1d2ae335746 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk new file mode 100644 index 00000000000..efaa9c2e7dd --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk new file mode 100644 index 00000000000..5dba7ec69db --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk new file mode 100644 index 00000000000..a08d36cc6db --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk new file mode 100644 index 00000000000..f82dec09351 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..032a94b5151 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..c19c16f990d --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk new file mode 100644 index 00000000000..84b9ff1f885 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk new file mode 100644 index 00000000000..84b9ff1f885 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk new file mode 100644 index 00000000000..c48b6c0e36b --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk similarity index 51% rename from install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15_ppc64le.njk rename to install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk index d1cebabfff4..e63b992e7a4 100644 --- a/install_template/templates/products/edb-hadoop-foreign-data-wrapper/sles-15_ppc64le.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-15_ppc64le.njk @@ -1,3 +1,3 @@ -{% extends "products/edb-hadoop-foreign-data-wrapper/base.njk" %} +{% extends "products/hadoop-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk new file mode 100644 index 00000000000..ded5f976c67 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/hadoop-foreign-data-wrapper/debian-10.njk" %} diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk new file mode 100644 index 00000000000..ded5f976c67 --- /dev/null +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/hadoop-foreign-data-wrapper/debian-10.njk" %} From d3a243dc701de939bff3d2d451c7dc4543c93513 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 15 Mar 2022 11:57:31 -0400 Subject: [PATCH 046/180] adding all the FDW SLES topics --- install_template/config.yaml | 80 ++++++++++++++++++------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 5f31bfc2e9a..e91cc07a015 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -351,42 +351,42 @@ products: platforms: # - name: CentOS 7 # arch: x86_64 - # supported versions: [11, 12, 13, 14] + # supported versions: [14] # - name: CentOS 7 # arch: ppc64le - # supported versions: [11, 12, 13, 14] + # supported versions: [14] # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 - # supported versions: [11, 12, 13, 14] + # supported versions: [14] # - name: RHEL 7 or OL 7 # arch: x86_64 - # supported versions: [11, 12, 13, 14] + # supported versions: [14] # - name: RHEL 7 or OL 7 # arch: ppc64le - # supported versions: [11, 12, 13, 14] + # supported versions: [14] # - name: RHEL 8 or OL 8 # arch: x86_64 - # supported versions: [11, 12, 13, 14] + # supported versions: [14] # - name: Ubuntu 18.04 or Debian 9 # arch: x86_64 - # supported versions: [11, 12, 13, 14] + # supported versions: [14] # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 - # supported versions: [11, 12, 13, 14] + # supported versions: [14] - name: SLES 12 arch: x86_64 - supported versions: [11, 12, 13, 14] + supported versions: [14] - name: SLES 12 arch: ppc64le - supported versions: [11, 12, 13, 14] + supported versions: [14] - name: SLES 15 arch: x86_64 - supported versions: [11, 12, 13, 14] + supported versions: [14] - name: SLES 15 arch: ppc64le - supported versions: [11, 12, 13, 14] - # - name: MongoDB Foreign Data Wrapper - # platforms: + supported versions: [14] + - name: MongoDB Foreign Data Wrapper + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -411,20 +411,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: MySQL Foreign Data Wrapper - # platforms: + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] + - name: MySQL Foreign Data Wrapper + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -449,18 +449,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: PostGIS # platforms: # - name: CentOS 7 From c74e6259b268eb182460639438c63da1428cd228 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Wed, 16 Mar 2022 09:09:22 -0400 Subject: [PATCH 047/180] removed epas 8.6 --- install_template/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index e91cc07a015..e5512bd29a6 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -231,10 +231,10 @@ products: # platforms: # - name: CentOS 7 # arch: x86_64 - # supported versions: [9.6, 10, 11, 12, 13, 14] + # supported versions: [10, 11, 12, 13, 14] # - name: CentOS 7 # arch: ppc64le - # supported versions: [9.6, 10, 11, 12, 13, 14] + # supported versions: [10, 11, 12, 13, 14] # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 # supported versions: [11, 12, 13, 14] From fdfc3e51895e93c57e081fb8eea8c862299a6345 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 16 Mar 2022 12:09:28 -0400 Subject: [PATCH 048/180] shuffled install steps for SLES 12 --- install_template/templates/platformBase/sles-12.njk | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index d104960a971..dd21fcd363a 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -6,8 +6,8 @@ Setting up the repository is a one time task. If you have already set up your re # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Refresh the metadata -zypper refresh +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories # Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information @@ -15,9 +15,6 @@ SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - # Refresh the metadata zypper refresh From 47c95795d9c09c5ebadd36a3ee2ad93692a2994c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 16 Mar 2022 12:22:42 -0400 Subject: [PATCH 049/180] added SLES for Failover Manager --- install_template/config.yaml | 72 ++++++++++++++++++------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index e5512bd29a6..292f1ef1983 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -39,36 +39,36 @@ products: # supported versions: [42.x.x] - name: Migration Toolkit platforms: - - name: RHEL 8 or OL 8 - arch: x86_64 - supported versions: [55] - - name: AlmaLinux 8 or Rocky Linux 8 - arch: x86_64 - supported versions: [55] - - name: RHEL 7 or OL 7 - arch: x86_64 - supported versions: [55] - - name: CentOS 7 - arch: x86_64 - supported versions: [55] +# - name: RHEL 8 or OL 8 +# arch: x86_64 +# supported versions: [55] +# - name: AlmaLinux 8 or Rocky Linux 8 +# arch: x86_64 +# supported versions: [55] +# - name: RHEL 7 or OL 7 +# arch: x86_64 +# supported versions: [55] +# - name: CentOS 7 +# arch: x86_64 +# supported versions: [55] - name: SLES 15 arch: x86_64 supported versions: [55] - name: SLES 12 arch: ppc64le supported versions: [55] - - name: Ubuntu 20.04 or Debian 10 - arch: x86_64 - supported versions: [55] - - name: Ubuntu 18.04 or Debian 9 - arch: x86_64 - supported versions: [55] - - name: RHEL 8 or OL 8 - arch: ppc64le - supported versions: [55] - - name: RHEL 7 or OL 7 - arch: ppc64le - supported versions: [55] +# - name: Ubuntu 20.04 or Debian 10 +# arch: x86_64 +# supported versions: [55] +# - name: Ubuntu 18.04 or Debian 9 +# arch: x86_64 +# supported versions: [55] +# - name: RHEL 8 or OL 8 +# arch: ppc64le +# supported versions: [55] +# - name: RHEL 7 or OL 7 +# arch: ppc64le +# supported versions: [55] - name: SLES 15 arch: ppc64le supported versions: [55] @@ -335,18 +335,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: SLES 12 + arch: x86_64 + supported versions: [4.4] + - name: SLES 12 + arch: ppc64le + supported versions: [4.4] + - name: SLES 15 + arch: x86_64 + supported versions: [4.4] + - name: SLES 15 + arch: ppc64le + supported versions: [4.4] - name: Hadoop Foreign Data Wrapper platforms: # - name: CentOS 7 From 8f363baa42b67d66148c5b0f1f5ac4aa9bed39f1 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 16 Mar 2022 12:25:15 -0400 Subject: [PATCH 050/180] tweaks to add SLES in Failover Manager --- install_template/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 292f1ef1983..fee1243ad14 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -309,8 +309,8 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [9.6, 11, 12, 13, 14] - # - name: Failover Manager - # platforms: + - name: Failover Manager + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] From 7a9ef1fb0d07daffa60f6f8328034abbd8a30753 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 17 Mar 2022 09:26:00 -0400 Subject: [PATCH 051/180] adding SLES topics for JDBC connector --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index fee1243ad14..af90d1cb27d 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,6 +1,6 @@ products: - # - name: EDB JDBC Connector - # platforms: + - name: EDB JDBC Connector + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [42.x.x] @@ -25,18 +25,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [42.x.x] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [42.x.x] + - name: SLES 12 + arch: x86_64 + supported versions: [42.x.x] + - name: SLES 12 + arch: ppc64le + supported versions: [42.x.x] + - name: SLES 15 + arch: x86_64 + supported versions: [42.x.x] + - name: SLES 15 + arch: ppc64le + supported versions: [42.x.x] - name: Migration Toolkit platforms: # - name: RHEL 8 or OL 8 From 5afd8f3ea3d9e01ac3d891b72c15f00e3fc86c20 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 22 Mar 2022 08:54:30 -0400 Subject: [PATCH 052/180] Deleting all generated files --- .../renders/edb*plus_11_centos-7_ppc64le.mdx | 62 ------- .../renders/edb*plus_11_centos-7_x86_64.mdx | 44 ----- .../renders/edb*plus_11_centos-8_x86_64.mdx | 52 ------ .../renders/edb*plus_11_debian-10_x86_64.mdx | 45 ----- .../renders/edb*plus_11_debian-9_x86_64.mdx | 50 ------ .../renders/edb*plus_11_rhel-7_ppc64le.mdx | 69 -------- .../renders/edb*plus_11_rhel-7_x86_64.mdx | 51 ------ .../renders/edb*plus_11_rhel-8_x86_64.mdx | 53 ------ .../renders/edb*plus_11_sles-12_ppc64le.mdx | 49 ------ .../renders/edb*plus_11_sles-12_x86_64.mdx | 49 ------ .../renders/edb*plus_11_sles-15_ppc64le.mdx | 48 ----- .../renders/edb*plus_11_sles-15_x86_64.mdx | 48 ----- .../edb*plus_11_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb*plus_11_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/edb*plus_12_centos-7_ppc64le.mdx | 62 ------- .../renders/edb*plus_12_centos-7_x86_64.mdx | 44 ----- .../renders/edb*plus_12_centos-8_x86_64.mdx | 52 ------ .../renders/edb*plus_12_debian-10_x86_64.mdx | 45 ----- .../renders/edb*plus_12_debian-9_x86_64.mdx | 50 ------ .../renders/edb*plus_12_rhel-7_ppc64le.mdx | 69 -------- .../renders/edb*plus_12_rhel-7_x86_64.mdx | 51 ------ .../renders/edb*plus_12_rhel-8_x86_64.mdx | 53 ------ .../renders/edb*plus_12_sles-12_ppc64le.mdx | 49 ------ .../renders/edb*plus_12_sles-12_x86_64.mdx | 49 ------ .../renders/edb*plus_12_sles-15_ppc64le.mdx | 48 ----- .../renders/edb*plus_12_sles-15_x86_64.mdx | 48 ----- .../edb*plus_12_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb*plus_12_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/edb*plus_13_centos-7_ppc64le.mdx | 62 ------- .../renders/edb*plus_13_centos-7_x86_64.mdx | 44 ----- .../renders/edb*plus_13_centos-8_x86_64.mdx | 52 ------ .../renders/edb*plus_13_debian-10_x86_64.mdx | 45 ----- .../renders/edb*plus_13_debian-9_x86_64.mdx | 50 ------ .../renders/edb*plus_13_rhel-7_ppc64le.mdx | 69 -------- .../renders/edb*plus_13_rhel-7_x86_64.mdx | 51 ------ .../renders/edb*plus_13_rhel-8_x86_64.mdx | 53 ------ .../renders/edb*plus_13_sles-12_ppc64le.mdx | 49 ------ .../renders/edb*plus_13_sles-12_x86_64.mdx | 49 ------ .../renders/edb*plus_13_sles-15_ppc64le.mdx | 48 ----- .../renders/edb*plus_13_sles-15_x86_64.mdx | 48 ----- .../edb*plus_13_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb*plus_13_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/edb*plus_14_centos-7_ppc64le.mdx | 62 ------- .../renders/edb*plus_14_centos-7_x86_64.mdx | 44 ----- .../renders/edb*plus_14_centos-8_x86_64.mdx | 52 ------ .../renders/edb*plus_14_debian-10_x86_64.mdx | 45 ----- .../renders/edb*plus_14_debian-9_x86_64.mdx | 50 ------ .../renders/edb*plus_14_rhel-7_ppc64le.mdx | 69 -------- .../renders/edb*plus_14_rhel-7_x86_64.mdx | 51 ------ .../renders/edb*plus_14_rhel-8_x86_64.mdx | 53 ------ .../renders/edb*plus_14_sles-12_ppc64le.mdx | 49 ------ .../renders/edb*plus_14_sles-12_x86_64.mdx | 49 ------ .../renders/edb*plus_14_sles-15_ppc64le.mdx | 48 ----- .../renders/edb*plus_14_sles-15_x86_64.mdx | 48 ----- .../edb*plus_14_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb*plus_14_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/edb*plus_9.6_centos-7_ppc64le.mdx | 62 ------- .../renders/edb*plus_9.6_centos-7_x86_64.mdx | 44 ----- .../renders/edb*plus_9.6_centos-8_x86_64.mdx | 52 ------ .../renders/edb*plus_9.6_debian-10_x86_64.mdx | 45 ----- .../renders/edb*plus_9.6_debian-9_x86_64.mdx | 50 ------ .../renders/edb*plus_9.6_rhel-7_ppc64le.mdx | 69 -------- .../renders/edb*plus_9.6_rhel-7_x86_64.mdx | 51 ------ .../renders/edb*plus_9.6_rhel-8_x86_64.mdx | 53 ------ .../renders/edb*plus_9.6_sles-12_ppc64le.mdx | 49 ------ .../renders/edb*plus_9.6_sles-12_x86_64.mdx | 49 ------ .../renders/edb*plus_9.6_sles-15_ppc64le.mdx | 48 ----- .../renders/edb*plus_9.6_sles-15_x86_64.mdx | 48 ----- .../edb*plus_9.6_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb*plus_9.6_ubuntu-20.04_x86_64.mdx | 45 ----- ....6_almalinux-8-or-rocky-linux-8_x86_64.mdx | 0 .../renders/edb-bart_2.6_centos-7_ppc64le.mdx | 0 .../renders/edb-bart_2.6_centos-7_x86_64.mdx | 0 .../edb-pgpoolii_4.1_centos-7_ppc64le.mdx | 62 ------- .../edb-pgpoolii_4.1_centos-7_x86_64.mdx | 44 ----- .../edb-pgpoolii_4.1_centos-8_x86_64.mdx | 52 ------ .../edb-pgpoolii_4.1_debian-10_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.1_debian-9_x86_64.mdx | 50 ------ .../edb-pgpoolii_4.1_rhel-7_ppc64le.mdx | 69 -------- .../edb-pgpoolii_4.1_rhel-7_x86_64.mdx | 51 ------ .../edb-pgpoolii_4.1_rhel-8_x86_64.mdx | 53 ------ .../edb-pgpoolii_4.1_sles-12_ppc64le.mdx | 49 ------ .../edb-pgpoolii_4.1_sles-12_x86_64.mdx | 49 ------ .../edb-pgpoolii_4.1_sles-15_ppc64le.mdx | 48 ----- .../edb-pgpoolii_4.1_sles-15_x86_64.mdx | 48 ----- .../edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.2_centos-7_ppc64le.mdx | 62 ------- .../edb-pgpoolii_4.2_centos-7_x86_64.mdx | 44 ----- .../edb-pgpoolii_4.2_centos-8_x86_64.mdx | 52 ------ .../edb-pgpoolii_4.2_debian-10_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.2_debian-9_x86_64.mdx | 50 ------ .../edb-pgpoolii_4.2_rhel-7_ppc64le.mdx | 69 -------- .../edb-pgpoolii_4.2_rhel-7_x86_64.mdx | 51 ------ .../edb-pgpoolii_4.2_rhel-8_x86_64.mdx | 53 ------ .../edb-pgpoolii_4.2_sles-12_ppc64le.mdx | 49 ------ .../edb-pgpoolii_4.2_sles-12_x86_64.mdx | 49 ------ .../edb-pgpoolii_4.2_sles-15_ppc64le.mdx | 48 ----- .../edb-pgpoolii_4.2_sles-15_x86_64.mdx | 48 ----- .../edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.3_centos-7_ppc64le.mdx | 62 ------- .../edb-pgpoolii_4.3_centos-7_x86_64.mdx | 44 ----- .../edb-pgpoolii_4.3_centos-8_x86_64.mdx | 52 ------ .../edb-pgpoolii_4.3_debian-10_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.3_debian-9_x86_64.mdx | 50 ------ .../edb-pgpoolii_4.3_rhel-7_ppc64le.mdx | 69 -------- .../edb-pgpoolii_4.3_rhel-7_x86_64.mdx | 51 ------ .../edb-pgpoolii_4.3_rhel-8_x86_64.mdx | 53 ------ .../edb-pgpoolii_4.3_sles-12_ppc64le.mdx | 49 ------ .../edb-pgpoolii_4.3_sles-12_x86_64.mdx | 49 ------ .../edb-pgpoolii_4.3_sles-15_ppc64le.mdx | 48 ----- .../edb-pgpoolii_4.3_sles-15_x86_64.mdx | 48 ----- .../edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx | 45 ----- .../edb-pgpoolii_4_sles-15_ppc64le.mdx | 48 ----- .../renders/edb-pgpoolii_4_sles-15_x86_64.mdx | 48 ----- .../edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx | 45 ----- .../edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx | 45 ----- ...es-advanced-server_10_centos-7_ppc64le.mdx | 147 ---------------- ...res-advanced-server_10_centos-7_x86_64.mdx | 129 -------------- ...stgres-advanced-server_10_rhel-7_local.mdx | 166 ------------------ ...gres-advanced-server_10_rhel-7_ppc64le.mdx | 148 ---------------- ...tgres-advanced-server_10_rhel-7_x86_64.mdx | 129 -------------- ...es-advanced-server_11_centos-7_ppc64le.mdx | 147 ---------------- ...res-advanced-server_11_centos-7_x86_64.mdx | 129 -------------- ...res-advanced-server_11_centos-8_x86_64.mdx | 137 --------------- ...res-advanced-server_11_debian-9_x86_64.mdx | 115 ------------ ...stgres-advanced-server_11_rhel-7_local.mdx | 166 ------------------ ...gres-advanced-server_11_rhel-7_ppc64le.mdx | 148 ---------------- ...tgres-advanced-server_11_rhel-7_x86_64.mdx | 129 -------------- ...11_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 -------------- ...tgres-advanced-server_11_rhel-8_x86_64.mdx | 130 -------------- ...res-advanced-server_11_sles-12_ppc64le.mdx | 124 ------------- ...gres-advanced-server_11_sles-12_x86_64.mdx | 124 ------------- ...res-advanced-server_11_sles-15_ppc64le.mdx | 123 ------------- ...gres-advanced-server_11_sles-15_x86_64.mdx | 123 ------------- ...advanced-server_11_ubuntu-18.04_x86_64.mdx | 110 ------------ ...es-advanced-server_12_centos-7_ppc64le.mdx | 147 ---------------- ...res-advanced-server_12_centos-7_x86_64.mdx | 129 -------------- ...res-advanced-server_12_centos-8_x86_64.mdx | 137 --------------- ...es-advanced-server_12_debian-10_x86_64.mdx | 110 ------------ ...res-advanced-server_12_debian-9_x86_64.mdx | 115 ------------ ...stgres-advanced-server_12_rhel-7_local.mdx | 166 ------------------ ...gres-advanced-server_12_rhel-7_ppc64le.mdx | 148 ---------------- ...tgres-advanced-server_12_rhel-7_x86_64.mdx | 129 -------------- ...12_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 -------------- ...tgres-advanced-server_12_rhel-8_x86_64.mdx | 130 -------------- ...res-advanced-server_12_sles-12_ppc64le.mdx | 124 ------------- ...gres-advanced-server_12_sles-12_x86_64.mdx | 124 ------------- ...res-advanced-server_12_sles-15_ppc64le.mdx | 123 ------------- ...gres-advanced-server_12_sles-15_x86_64.mdx | 123 ------------- ...advanced-server_12_ubuntu-18.04_x86_64.mdx | 110 ------------ ...es-advanced-server_13_centos-7_ppc64le.mdx | 147 ---------------- ...res-advanced-server_13_centos-7_x86_64.mdx | 129 -------------- ...res-advanced-server_13_centos-8_x86_64.mdx | 137 --------------- ...es-advanced-server_13_debian-10_x86_64.mdx | 110 ------------ ...res-advanced-server_13_debian-9_x86_64.mdx | 115 ------------ ...stgres-advanced-server_13_rhel-7_local.mdx | 166 ------------------ ...gres-advanced-server_13_rhel-7_ppc64le.mdx | 148 ---------------- ...tgres-advanced-server_13_rhel-7_x86_64.mdx | 129 -------------- ...13_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 -------------- ...tgres-advanced-server_13_rhel-8_x86_64.mdx | 130 -------------- ...res-advanced-server_13_sles-12_ppc64le.mdx | 124 ------------- ...gres-advanced-server_13_sles-12_x86_64.mdx | 124 ------------- ...res-advanced-server_13_sles-15_ppc64le.mdx | 123 ------------- ...gres-advanced-server_13_sles-15_x86_64.mdx | 123 ------------- ...advanced-server_13_ubuntu-18.04_x86_64.mdx | 110 ------------ ...advanced-server_13_ubuntu-20.04_x86_64.mdx | 110 ------------ ...es-advanced-server_14_centos-7_ppc64le.mdx | 147 ---------------- ...res-advanced-server_14_centos-7_x86_64.mdx | 129 -------------- ...res-advanced-server_14_centos-8_x86_64.mdx | 137 --------------- ...es-advanced-server_14_debian-10_x86_64.mdx | 110 ------------ ...res-advanced-server_14_debian-9_x86_64.mdx | 115 ------------ ...stgres-advanced-server_14_rhel-7_local.mdx | 166 ------------------ ...gres-advanced-server_14_rhel-7_ppc64le.mdx | 148 ---------------- ...tgres-advanced-server_14_rhel-7_x86_64.mdx | 129 -------------- ...14_rhel-8_Linux on IBM Power (ppc64le).mdx | 130 -------------- ...tgres-advanced-server_14_rhel-8_x86_64.mdx | 130 -------------- ...res-advanced-server_14_sles-12_ppc64le.mdx | 124 ------------- ...gres-advanced-server_14_sles-12_x86_64.mdx | 124 ------------- ...res-advanced-server_14_sles-15_ppc64le.mdx | 123 ------------- ...gres-advanced-server_14_sles-15_x86_64.mdx | 123 ------------- ...advanced-server_14_ubuntu-18.04_x86_64.mdx | 110 ------------ ...advanced-server_14_ubuntu-20.04_x86_64.mdx | 110 ------------ ...s-advanced-server_9.6_centos-7_ppc64le.mdx | 147 ---------------- ...es-advanced-server_9.6_centos-7_x86_64.mdx | 129 -------------- ...tgres-advanced-server_9.6_rhel-7_local.mdx | 166 ------------------ ...res-advanced-server_9.6_rhel-7_ppc64le.mdx | 148 ---------------- ...gres-advanced-server_9.6_rhel-7_x86_64.mdx | 129 -------------- ...es-advanced-server_9.6_sles-12_ppc64le.mdx | 124 ------------- ...res-advanced-server_9.6_sles-12_x86_64.mdx | 124 ------------- ...es-advanced-server_9.6_sles-15_ppc64le.mdx | 123 ------------- ...res-advanced-server_9.6_sles-15_x86_64.mdx | 123 ------------- .../failover-manager_3.1_centos-7_ppc64le.mdx | 62 ------- .../failover-manager_3.1_centos-7_x86_64.mdx | 44 ----- .../failover-manager_3.1_centos-8_x86_64.mdx | 52 ------ .../failover-manager_3.1_debian-10_x86_64.mdx | 45 ----- .../failover-manager_3.1_debian-9_x86_64.mdx | 50 ------ .../failover-manager_3.1_rhel-7_ppc64le.mdx | 69 -------- .../failover-manager_3.1_rhel-7_x86_64.mdx | 51 ------ .../failover-manager_3.1_rhel-8_x86_64.mdx | 53 ------ .../failover-manager_3.1_sles-12_ppc64le.mdx | 49 ------ .../failover-manager_3.1_sles-12_x86_64.mdx | 49 ------ .../failover-manager_3.1_sles-15_ppc64le.mdx | 48 ----- .../failover-manager_3.1_sles-15_x86_64.mdx | 48 ----- ...ilover-manager_3.1_ubuntu-18.04_x86_64.mdx | 45 ----- ...ilover-manager_3.1_ubuntu-20.04_x86_64.mdx | 45 ----- .../failover-manager_4.1_centos-7_ppc64le.mdx | 62 ------- .../failover-manager_4.1_centos-7_x86_64.mdx | 44 ----- .../failover-manager_4.1_centos-8_x86_64.mdx | 52 ------ .../failover-manager_4.1_debian-10_x86_64.mdx | 45 ----- .../failover-manager_4.1_debian-9_x86_64.mdx | 50 ------ .../failover-manager_4.1_rhel-7_ppc64le.mdx | 69 -------- .../failover-manager_4.1_rhel-7_x86_64.mdx | 51 ------ .../failover-manager_4.1_rhel-8_x86_64.mdx | 53 ------ .../failover-manager_4.1_sles-12_ppc64le.mdx | 49 ------ .../failover-manager_4.1_sles-12_x86_64.mdx | 49 ------ .../failover-manager_4.1_sles-15_ppc64le.mdx | 48 ----- .../failover-manager_4.1_sles-15_x86_64.mdx | 48 ----- ...ilover-manager_4.1_ubuntu-18.04_x86_64.mdx | 45 ----- ...ilover-manager_4.1_ubuntu-20.04_x86_64.mdx | 45 ----- .../failover-manager_4.2_centos-7_ppc64le.mdx | 62 ------- .../failover-manager_4.2_centos-7_x86_64.mdx | 44 ----- .../failover-manager_4.2_centos-8_x86_64.mdx | 52 ------ .../failover-manager_4.2_debian-10_x86_64.mdx | 45 ----- .../failover-manager_4.2_debian-9_x86_64.mdx | 50 ------ .../failover-manager_4.2_rhel-7_ppc64le.mdx | 69 -------- .../failover-manager_4.2_rhel-7_x86_64.mdx | 51 ------ .../failover-manager_4.2_rhel-8_x86_64.mdx | 53 ------ .../failover-manager_4.2_sles-12_ppc64le.mdx | 49 ------ .../failover-manager_4.2_sles-12_x86_64.mdx | 49 ------ .../failover-manager_4.2_sles-15_ppc64le.mdx | 48 ----- .../failover-manager_4.2_sles-15_x86_64.mdx | 48 ----- ...ilover-manager_4.2_ubuntu-18.04_x86_64.mdx | 45 ----- ...ilover-manager_4.2_ubuntu-20.04_x86_64.mdx | 45 ----- .../failover-manager_4.3_centos-7_ppc64le.mdx | 62 ------- .../failover-manager_4.3_centos-7_x86_64.mdx | 44 ----- .../failover-manager_4.3_centos-8_x86_64.mdx | 52 ------ .../failover-manager_4.3_debian-10_x86_64.mdx | 45 ----- .../failover-manager_4.3_debian-9_x86_64.mdx | 50 ------ .../failover-manager_4.3_rhel-7_ppc64le.mdx | 69 -------- .../failover-manager_4.3_rhel-7_x86_64.mdx | 51 ------ .../failover-manager_4.3_rhel-8_x86_64.mdx | 53 ------ .../failover-manager_4.3_sles-12_ppc64le.mdx | 49 ------ .../failover-manager_4.3_sles-12_x86_64.mdx | 49 ------ .../failover-manager_4.3_sles-15_ppc64le.mdx | 48 ----- .../failover-manager_4.3_sles-15_x86_64.mdx | 48 ----- ...ilover-manager_4.3_ubuntu-18.04_x86_64.mdx | 45 ----- ...ilover-manager_4.3_ubuntu-20.04_x86_64.mdx | 45 ----- .../failover-manager_4.4_centos-7_ppc64le.mdx | 62 ------- .../failover-manager_4.4_centos-7_x86_64.mdx | 44 ----- .../failover-manager_4.4_centos-8_x86_64.mdx | 52 ------ .../failover-manager_4.4_debian-10_x86_64.mdx | 45 ----- .../failover-manager_4.4_debian-9_x86_64.mdx | 50 ------ .../failover-manager_4.4_rhel-7_ppc64le.mdx | 69 -------- .../failover-manager_4.4_rhel-7_x86_64.mdx | 51 ------ .../failover-manager_4.4_rhel-8_x86_64.mdx | 53 ------ .../failover-manager_4.4_sles-12_ppc64le.mdx | 49 ------ .../failover-manager_4.4_sles-12_x86_64.mdx | 49 ------ .../failover-manager_4.4_sles-15_ppc64le.mdx | 48 ----- .../failover-manager_4.4_sles-15_x86_64.mdx | 48 ----- ...ilover-manager_4.4_ubuntu-18.04_x86_64.mdx | 45 ----- ...ilover-manager_4.4_ubuntu-20.04_x86_64.mdx | 45 ----- .../failover-manager_4_centos-7_ppc64le.mdx | 62 ------- .../failover-manager_4_centos-7_x86_64.mdx | 44 ----- .../failover-manager_4_centos-8_x86_64.mdx | 52 ------ .../failover-manager_4_debian-10_x86_64.mdx | 45 ----- .../failover-manager_4_debian-9_x86_64.mdx | 50 ------ .../failover-manager_4_rhel-7_ppc64le.mdx | 69 -------- .../failover-manager_4_rhel-7_x86_64.mdx | 51 ------ .../failover-manager_4_rhel-8_x86_64.mdx | 53 ------ .../failover-manager_4_sles-12_ppc64le.mdx | 49 ------ .../failover-manager_4_sles-12_x86_64.mdx | 49 ------ .../failover-manager_4_sles-15_ppc64le.mdx | 48 ----- .../failover-manager_4_sles-15_x86_64.mdx | 48 ----- ...failover-manager_4_ubuntu-18.04_x86_64.mdx | 45 ----- ...failover-manager_4_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_11_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_11_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_11_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_11_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_11_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_11_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_11_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_11_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_11_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_11_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_11_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_11_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_11_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_11_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_12_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_12_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_12_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_12_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_12_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_12_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_12_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_12_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_12_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_12_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_12_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_12_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_12_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_12_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_13_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_13_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_13_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_13_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_13_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_13_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_13_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_13_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_13_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_13_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_13_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_13_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_13_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_13_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_14_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_14_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_14_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_14_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_14_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_14_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_14_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_14_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_14_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_14_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_11_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_11_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_11_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_11_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_11_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_11_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_11_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_11_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_11_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_11_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_11_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_11_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_11_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_11_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_12_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_12_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_12_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_12_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_12_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_12_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_12_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_12_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_12_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_12_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_12_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_12_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_12_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_12_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_13_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_13_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_13_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_13_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_13_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_13_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_13_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_13_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_13_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_13_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_13_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_13_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_13_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_13_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_14_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_14_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_14_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_14_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_14_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_14_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_14_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_14_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_14_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_14_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_11_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_11_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_11_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_11_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_11_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_11_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_11_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_11_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_11_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_11_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_11_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_11_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_11_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_11_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_12_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_12_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_12_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_12_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_12_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_12_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_12_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_12_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_12_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_12_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_12_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_12_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_12_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_12_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_13_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_13_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_13_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_13_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_13_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_13_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_13_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_13_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_13_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_13_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_13_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_13_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_13_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_13_ubuntu-20.04_x86_64.mdx | 45 ----- ...reign-data-wrapper_14_centos-7_ppc64le.mdx | 62 ------- ...oreign-data-wrapper_14_centos-7_x86_64.mdx | 44 ----- ...oreign-data-wrapper_14_centos-8_x86_64.mdx | 52 ------ ...reign-data-wrapper_14_debian-10_x86_64.mdx | 45 ----- ...oreign-data-wrapper_14_debian-9_x86_64.mdx | 50 ------ ...foreign-data-wrapper_14_rhel-7_ppc64le.mdx | 69 -------- ...-foreign-data-wrapper_14_rhel-7_x86_64.mdx | 51 ------ ...-foreign-data-wrapper_14_rhel-8_x86_64.mdx | 53 ------ ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 49 ------ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 49 ------ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 ----- ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 ----- ...gn-data-wrapper_14_ubuntu-18.04_x86_64.mdx | 45 ----- ...gn-data-wrapper_14_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/postgis_11_centos-7_ppc64le.mdx | 62 ------- .../renders/postgis_11_centos-7_x86_64.mdx | 44 ----- .../renders/postgis_11_centos-8_x86_64.mdx | 52 ------ .../renders/postgis_11_debian-10_x86_64.mdx | 45 ----- .../renders/postgis_11_debian-9_x86_64.mdx | 50 ------ .../renders/postgis_11_rhel-7_ppc64le.mdx | 69 -------- .../renders/postgis_11_rhel-7_x86_64.mdx | 51 ------ .../renders/postgis_11_rhel-8_x86_64.mdx | 53 ------ .../renders/postgis_11_sles-12_ppc64le.mdx | 49 ------ .../renders/postgis_11_sles-12_x86_64.mdx | 49 ------ .../renders/postgis_11_sles-15_ppc64le.mdx | 48 ----- .../renders/postgis_11_sles-15_x86_64.mdx | 48 ----- .../postgis_11_ubuntu-18.04_x86_64.mdx | 45 ----- .../postgis_11_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/postgis_12_centos-7_ppc64le.mdx | 62 ------- .../renders/postgis_12_centos-7_x86_64.mdx | 44 ----- .../renders/postgis_12_centos-8_x86_64.mdx | 52 ------ .../renders/postgis_12_debian-10_x86_64.mdx | 45 ----- .../renders/postgis_12_debian-9_x86_64.mdx | 50 ------ .../renders/postgis_12_rhel-7_ppc64le.mdx | 69 -------- .../renders/postgis_12_rhel-7_x86_64.mdx | 51 ------ .../renders/postgis_12_rhel-8_x86_64.mdx | 53 ------ .../renders/postgis_12_sles-12_ppc64le.mdx | 49 ------ .../renders/postgis_12_sles-12_x86_64.mdx | 49 ------ .../renders/postgis_12_sles-15_ppc64le.mdx | 48 ----- .../renders/postgis_12_sles-15_x86_64.mdx | 48 ----- .../postgis_12_ubuntu-18.04_x86_64.mdx | 45 ----- .../postgis_12_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/postgis_13_centos-7_ppc64le.mdx | 62 ------- .../renders/postgis_13_centos-7_x86_64.mdx | 44 ----- .../renders/postgis_13_centos-8_x86_64.mdx | 52 ------ .../renders/postgis_13_debian-10_x86_64.mdx | 45 ----- .../renders/postgis_13_debian-9_x86_64.mdx | 50 ------ .../renders/postgis_13_rhel-7_ppc64le.mdx | 69 -------- .../renders/postgis_13_rhel-7_x86_64.mdx | 51 ------ .../renders/postgis_13_rhel-8_x86_64.mdx | 53 ------ .../renders/postgis_13_sles-12_ppc64le.mdx | 49 ------ .../renders/postgis_13_sles-12_x86_64.mdx | 49 ------ .../renders/postgis_13_sles-15_ppc64le.mdx | 48 ----- .../renders/postgis_13_sles-15_x86_64.mdx | 48 ----- .../postgis_13_ubuntu-18.04_x86_64.mdx | 45 ----- .../postgis_13_ubuntu-20.04_x86_64.mdx | 45 ----- .../renders/postgis_14_centos-7_ppc64le.mdx | 62 ------- .../renders/postgis_14_centos-7_x86_64.mdx | 44 ----- .../renders/postgis_14_centos-8_x86_64.mdx | 52 ------ .../renders/postgis_14_debian-10_x86_64.mdx | 45 ----- .../renders/postgis_14_debian-9_x86_64.mdx | 50 ------ .../renders/postgis_14_rhel-7_ppc64le.mdx | 69 -------- .../renders/postgis_14_rhel-7_x86_64.mdx | 51 ------ .../renders/postgis_14_rhel-8_x86_64.mdx | 53 ------ .../renders/postgis_14_sles-12_ppc64le.mdx | 49 ------ .../renders/postgis_14_sles-12_x86_64.mdx | 49 ------ .../renders/postgis_14_sles-15_ppc64le.mdx | 48 ----- .../renders/postgis_14_sles-15_x86_64.mdx | 48 ----- .../postgis_14_ubuntu-18.04_x86_64.mdx | 45 ----- .../postgis_14_ubuntu-20.04_x86_64.mdx | 45 ----- ...-enterprise-manager_7_centos-7_ppc64le.mdx | 69 -------- ...s-enterprise-manager_7_centos-7_x86_64.mdx | 51 ------ ...s-enterprise-manager_7_centos-8_x86_64.mdx | 59 ------- ...-enterprise-manager_7_debian-10_x86_64.mdx | 52 ------ ...s-enterprise-manager_7_debian-9_x86_64.mdx | 57 ------ ...es-enterprise-manager_7_rhel-7_ppc64le.mdx | 76 -------- ...res-enterprise-manager_7_rhel-7_x86_64.mdx | 58 ------ ...res-enterprise-manager_7_rhel-8_x86_64.mdx | 60 ------- ...s-enterprise-manager_7_sles-12_ppc64le.mdx | 62 ------- ...es-enterprise-manager_7_sles-12_x86_64.mdx | 62 ------- ...s-enterprise-manager_7_sles-15_ppc64le.mdx | 61 ------- ...es-enterprise-manager_7_sles-15_x86_64.mdx | 61 ------- ...terprise-manager_7_ubuntu-18.04_x86_64.mdx | 52 ------ ...terprise-manager_7_ubuntu-20.04_x86_64.mdx | 52 ------ ...-enterprise-manager_8_centos-7_ppc64le.mdx | 69 -------- ...s-enterprise-manager_8_centos-7_x86_64.mdx | 51 ------ ...s-enterprise-manager_8_centos-8_x86_64.mdx | 59 ------- ...-enterprise-manager_8_debian-10_x86_64.mdx | 52 ------ ...s-enterprise-manager_8_debian-9_x86_64.mdx | 57 ------ ...es-enterprise-manager_8_rhel-7_ppc64le.mdx | 76 -------- ...res-enterprise-manager_8_rhel-7_x86_64.mdx | 58 ------ ...res-enterprise-manager_8_rhel-8_x86_64.mdx | 60 ------- ...s-enterprise-manager_8_sles-12_ppc64le.mdx | 62 ------- ...es-enterprise-manager_8_sles-12_x86_64.mdx | 62 ------- ...s-enterprise-manager_8_sles-15_ppc64le.mdx | 61 ------- ...es-enterprise-manager_8_sles-15_x86_64.mdx | 61 ------- ...terprise-manager_8_ubuntu-18.04_x86_64.mdx | 52 ------ ...terprise-manager_8_ubuntu-20.04_x86_64.mdx | 52 ------ ...replication-manager_7_centos-7_ppc64le.mdx | 62 ------- .../replication-manager_7_centos-7_x86_64.mdx | 44 ----- .../replication-manager_7_centos-8_x86_64.mdx | 52 ------ ...replication-manager_7_debian-10_x86_64.mdx | 45 ----- .../replication-manager_7_debian-9_x86_64.mdx | 50 ------ .../replication-manager_7_rhel-7_ppc64le.mdx | 69 -------- .../replication-manager_7_rhel-7_x86_64.mdx | 51 ------ .../replication-manager_7_rhel-8_x86_64.mdx | 53 ------ .../replication-manager_7_sles-12_ppc64le.mdx | 49 ------ .../replication-manager_7_sles-12_x86_64.mdx | 49 ------ .../replication-manager_7_sles-15_ppc64le.mdx | 48 ----- .../replication-manager_7_sles-15_x86_64.mdx | 48 ----- ...lication-manager_7_ubuntu-18.04_x86_64.mdx | 45 ----- ...lication-manager_7_ubuntu-20.04_x86_64.mdx | 45 ----- .../slony-replication_11_centos-7_ppc64le.mdx | 62 ------- .../slony-replication_11_centos-7_x86_64.mdx | 44 ----- .../slony-replication_11_centos-8_x86_64.mdx | 52 ------ .../slony-replication_11_debian-10_x86_64.mdx | 45 ----- .../slony-replication_11_debian-9_x86_64.mdx | 50 ------ .../slony-replication_11_rhel-7_ppc64le.mdx | 69 -------- .../slony-replication_11_rhel-7_x86_64.mdx | 51 ------ .../slony-replication_11_rhel-8_x86_64.mdx | 53 ------ .../slony-replication_11_sles-12_ppc64le.mdx | 49 ------ .../slony-replication_11_sles-12_x86_64.mdx | 49 ------ .../slony-replication_11_sles-15_ppc64le.mdx | 48 ----- .../slony-replication_11_sles-15_x86_64.mdx | 48 ----- ...ony-replication_11_ubuntu-18.04_x86_64.mdx | 45 ----- ...ony-replication_11_ubuntu-20.04_x86_64.mdx | 45 ----- .../slony-replication_12_centos-7_ppc64le.mdx | 62 ------- .../slony-replication_12_centos-7_x86_64.mdx | 44 ----- .../slony-replication_12_centos-8_x86_64.mdx | 52 ------ .../slony-replication_12_debian-10_x86_64.mdx | 45 ----- .../slony-replication_12_debian-9_x86_64.mdx | 50 ------ .../slony-replication_12_rhel-7_ppc64le.mdx | 69 -------- .../slony-replication_12_rhel-7_x86_64.mdx | 51 ------ .../slony-replication_12_rhel-8_x86_64.mdx | 53 ------ .../slony-replication_12_sles-12_ppc64le.mdx | 49 ------ .../slony-replication_12_sles-12_x86_64.mdx | 49 ------ .../slony-replication_12_sles-15_ppc64le.mdx | 48 ----- .../slony-replication_12_sles-15_x86_64.mdx | 48 ----- ...ony-replication_12_ubuntu-18.04_x86_64.mdx | 45 ----- ...ony-replication_12_ubuntu-20.04_x86_64.mdx | 45 ----- .../slony-replication_13_centos-7_ppc64le.mdx | 62 ------- .../slony-replication_13_centos-7_x86_64.mdx | 44 ----- .../slony-replication_13_centos-8_x86_64.mdx | 52 ------ .../slony-replication_13_debian-10_x86_64.mdx | 45 ----- .../slony-replication_13_debian-9_x86_64.mdx | 50 ------ .../slony-replication_13_rhel-7_ppc64le.mdx | 69 -------- .../slony-replication_13_rhel-7_x86_64.mdx | 51 ------ .../slony-replication_13_rhel-8_x86_64.mdx | 53 ------ .../slony-replication_13_sles-12_ppc64le.mdx | 49 ------ .../slony-replication_13_sles-12_x86_64.mdx | 49 ------ .../slony-replication_13_sles-15_ppc64le.mdx | 48 ----- .../slony-replication_13_sles-15_x86_64.mdx | 48 ----- ...ony-replication_13_ubuntu-18.04_x86_64.mdx | 45 ----- ...ony-replication_13_ubuntu-20.04_x86_64.mdx | 45 ----- .../slony-replication_14_centos-7_ppc64le.mdx | 62 ------- .../slony-replication_14_centos-7_x86_64.mdx | 44 ----- .../slony-replication_14_centos-8_x86_64.mdx | 52 ------ .../slony-replication_14_debian-10_x86_64.mdx | 45 ----- .../slony-replication_14_debian-9_x86_64.mdx | 50 ------ .../slony-replication_14_rhel-7_ppc64le.mdx | 69 -------- .../slony-replication_14_rhel-7_x86_64.mdx | 51 ------ .../slony-replication_14_rhel-8_x86_64.mdx | 53 ------ .../slony-replication_14_sles-12_ppc64le.mdx | 49 ------ .../slony-replication_14_sles-12_x86_64.mdx | 49 ------ .../slony-replication_14_sles-15_ppc64le.mdx | 48 ----- .../slony-replication_14_sles-15_x86_64.mdx | 48 ----- ...ony-replication_14_ubuntu-18.04_x86_64.mdx | 45 ----- ...ony-replication_14_ubuntu-20.04_x86_64.mdx | 45 ----- 600 files changed, 36522 deletions(-) delete mode 100644 install_template/renders/edb*plus_11_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_11_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_11_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_11_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_11_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_12_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_12_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_12_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_12_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_13_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_13_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_13_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_13_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_almalinux-8-or-rocky-linux-8_x86_64.mdx delete mode 100644 install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4_centos-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_centos-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_debian-10_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_debian-9_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4_sles-15_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_11_centos-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_centos-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_debian-10_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_debian-9_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_11_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/postgis_11_sles-12_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/postgis_11_sles-15_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_12_centos-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_centos-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_debian-10_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_debian-9_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_12_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/postgis_12_sles-12_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/postgis_12_sles-15_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_13_centos-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_centos-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_debian-10_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_debian-9_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_13_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/postgis_13_sles-12_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/postgis_13_sles-15_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/postgis_14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/postgis_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/postgis_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/replication-manager_7_centos-7_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_centos-8_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_debian-10_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_debian-9_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/replication-manager_7_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/replication-manager_7_sles-12_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/replication-manager_7_sles-15_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_11_centos-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_centos-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_debian-10_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_debian-9_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_11_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_11_sles-12_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_11_sles-15_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_12_centos-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_centos-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_debian-10_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_debian-9_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_12_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_12_sles-12_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_12_sles-15_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_13_centos-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_centos-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_debian-10_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_debian-9_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_13_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_13_sles-12_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_13_sles-15_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_centos-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_14_centos-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_centos-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_debian-10_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_debian-9_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_14_rhel-7_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_rhel-8_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/slony-replication_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx delete mode 100644 install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx diff --git a/install_template/renders/edb*plus_11_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_11_centos-7_ppc64le.mdx deleted file mode 100644 index 564111604ea..00000000000 --- a/install_template/renders/edb*plus_11_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB\*Plus 11 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_centos-7_x86_64.mdx b/install_template/renders/edb*plus_11_centos-7_x86_64.mdx deleted file mode 100644 index f6144804a23..00000000000 --- a/install_template/renders/edb*plus_11_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB\*Plus 11 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_centos-8_x86_64.mdx b/install_template/renders/edb*plus_11_centos-8_x86_64.mdx deleted file mode 100644 index ad330e5c790..00000000000 --- a/install_template/renders/edb*plus_11_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB\*Plus 11 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_debian-10_x86_64.mdx b/install_template/renders/edb*plus_11_debian-10_x86_64.mdx deleted file mode 100644 index 6fec707b5f0..00000000000 --- a/install_template/renders/edb*plus_11_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 11 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_debian-9_x86_64.mdx b/install_template/renders/edb*plus_11_debian-9_x86_64.mdx deleted file mode 100644 index fc0d5f27a75..00000000000 --- a/install_template/renders/edb*plus_11_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB\*Plus 11 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as11-edbplus -```` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx deleted file mode 100644 index 7b2921186ee..00000000000 --- a/install_template/renders/edb*plus_11_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB\*Plus 11 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_11_rhel-7_x86_64.mdx deleted file mode 100644 index 1f336d0127e..00000000000 --- a/install_template/renders/edb*plus_11_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB\*Plus 11 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_11_rhel-8_x86_64.mdx deleted file mode 100644 index 8812550d34f..00000000000 --- a/install_template/renders/edb*plus_11_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB\*Plus 11 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx deleted file mode 100644 index b210dd0c834..00000000000 --- a/install_template/renders/edb*plus_11_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 11 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-12_x86_64.mdx b/install_template/renders/edb*plus_11_sles-12_x86_64.mdx deleted file mode 100644 index 1a273740cba..00000000000 --- a/install_template/renders/edb*plus_11_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 11 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx deleted file mode 100644 index 58798852e0b..00000000000 --- a/install_template/renders/edb*plus_11_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 11 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_sles-15_x86_64.mdx b/install_template/renders/edb*plus_11_sles-15_x86_64.mdx deleted file mode 100644 index 1eeb989875f..00000000000 --- a/install_template/renders/edb*plus_11_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 11 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 2668eeb5df8..00000000000 --- a/install_template/renders/edb*plus_11_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 11 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index aca9228de64..00000000000 --- a/install_template/renders/edb*plus_11_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 11 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_12_centos-7_ppc64le.mdx deleted file mode 100644 index efe74dc00e6..00000000000 --- a/install_template/renders/edb*plus_12_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB\*Plus 12 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_centos-7_x86_64.mdx b/install_template/renders/edb*plus_12_centos-7_x86_64.mdx deleted file mode 100644 index 51a2a37eb46..00000000000 --- a/install_template/renders/edb*plus_12_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB\*Plus 12 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_centos-8_x86_64.mdx b/install_template/renders/edb*plus_12_centos-8_x86_64.mdx deleted file mode 100644 index 56328173c9e..00000000000 --- a/install_template/renders/edb*plus_12_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB\*Plus 12 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_debian-10_x86_64.mdx b/install_template/renders/edb*plus_12_debian-10_x86_64.mdx deleted file mode 100644 index 0d067b9a36d..00000000000 --- a/install_template/renders/edb*plus_12_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 12 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_debian-9_x86_64.mdx b/install_template/renders/edb*plus_12_debian-9_x86_64.mdx deleted file mode 100644 index dd27dd19294..00000000000 --- a/install_template/renders/edb*plus_12_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB\*Plus 12 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as12-edbplus -```` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx deleted file mode 100644 index f50b5245b73..00000000000 --- a/install_template/renders/edb*plus_12_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB\*Plus 12 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_12_rhel-7_x86_64.mdx deleted file mode 100644 index b9c4d90cc90..00000000000 --- a/install_template/renders/edb*plus_12_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB\*Plus 12 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_12_rhel-8_x86_64.mdx deleted file mode 100644 index bb9b28b1620..00000000000 --- a/install_template/renders/edb*plus_12_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB\*Plus 12 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx deleted file mode 100644 index 56acba4e42d..00000000000 --- a/install_template/renders/edb*plus_12_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 12 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-12_x86_64.mdx b/install_template/renders/edb*plus_12_sles-12_x86_64.mdx deleted file mode 100644 index 34de8e55afc..00000000000 --- a/install_template/renders/edb*plus_12_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 12 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx deleted file mode 100644 index afe15088180..00000000000 --- a/install_template/renders/edb*plus_12_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 12 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_sles-15_x86_64.mdx b/install_template/renders/edb*plus_12_sles-15_x86_64.mdx deleted file mode 100644 index 458107dc1be..00000000000 --- a/install_template/renders/edb*plus_12_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 12 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 1d1a6ede878..00000000000 --- a/install_template/renders/edb*plus_12_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 12 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 3a0cb049f93..00000000000 --- a/install_template/renders/edb*plus_12_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 12 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_13_centos-7_ppc64le.mdx deleted file mode 100644 index 97784c22421..00000000000 --- a/install_template/renders/edb*plus_13_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB\*Plus 13 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_centos-7_x86_64.mdx b/install_template/renders/edb*plus_13_centos-7_x86_64.mdx deleted file mode 100644 index 232c6cb701f..00000000000 --- a/install_template/renders/edb*plus_13_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB\*Plus 13 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_centos-8_x86_64.mdx b/install_template/renders/edb*plus_13_centos-8_x86_64.mdx deleted file mode 100644 index 929a3c6b157..00000000000 --- a/install_template/renders/edb*plus_13_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB\*Plus 13 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_debian-10_x86_64.mdx b/install_template/renders/edb*plus_13_debian-10_x86_64.mdx deleted file mode 100644 index 34ee0cb6de7..00000000000 --- a/install_template/renders/edb*plus_13_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 13 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_debian-9_x86_64.mdx b/install_template/renders/edb*plus_13_debian-9_x86_64.mdx deleted file mode 100644 index fef126b4dc1..00000000000 --- a/install_template/renders/edb*plus_13_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB\*Plus 13 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as13-edbplus -```` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx deleted file mode 100644 index 5c0e217281b..00000000000 --- a/install_template/renders/edb*plus_13_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB\*Plus 13 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_13_rhel-7_x86_64.mdx deleted file mode 100644 index 64e31773a12..00000000000 --- a/install_template/renders/edb*plus_13_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB\*Plus 13 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_13_rhel-8_x86_64.mdx deleted file mode 100644 index 1b375a408c4..00000000000 --- a/install_template/renders/edb*plus_13_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB\*Plus 13 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx deleted file mode 100644 index 06f63d38e67..00000000000 --- a/install_template/renders/edb*plus_13_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 13 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-12_x86_64.mdx b/install_template/renders/edb*plus_13_sles-12_x86_64.mdx deleted file mode 100644 index 414be764736..00000000000 --- a/install_template/renders/edb*plus_13_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 13 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx deleted file mode 100644 index 7f9f9973aa5..00000000000 --- a/install_template/renders/edb*plus_13_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 13 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_sles-15_x86_64.mdx b/install_template/renders/edb*plus_13_sles-15_x86_64.mdx deleted file mode 100644 index 5a68a2724f9..00000000000 --- a/install_template/renders/edb*plus_13_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 13 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 38476edb457..00000000000 --- a/install_template/renders/edb*plus_13_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 13 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index e5675beaa33..00000000000 --- a/install_template/renders/edb*plus_13_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 13 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_14_centos-7_ppc64le.mdx deleted file mode 100644 index 1aff57bbbff..00000000000 --- a/install_template/renders/edb*plus_14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB\*Plus 14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_centos-7_x86_64.mdx b/install_template/renders/edb*plus_14_centos-7_x86_64.mdx deleted file mode 100644 index 492166d5b6a..00000000000 --- a/install_template/renders/edb*plus_14_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB\*Plus 14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_centos-8_x86_64.mdx b/install_template/renders/edb*plus_14_centos-8_x86_64.mdx deleted file mode 100644 index 6eee27a8664..00000000000 --- a/install_template/renders/edb*plus_14_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB\*Plus 14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_debian-10_x86_64.mdx b/install_template/renders/edb*plus_14_debian-10_x86_64.mdx deleted file mode 100644 index 686425f7ee4..00000000000 --- a/install_template/renders/edb*plus_14_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_debian-9_x86_64.mdx b/install_template/renders/edb*plus_14_debian-9_x86_64.mdx deleted file mode 100644 index d790bba4491..00000000000 --- a/install_template/renders/edb*plus_14_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB\*Plus 14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as14-edbplus -```` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx deleted file mode 100644 index cfa45bbddc3..00000000000 --- a/install_template/renders/edb*plus_14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB\*Plus 14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_14_rhel-7_x86_64.mdx deleted file mode 100644 index 926ab95a7ae..00000000000 --- a/install_template/renders/edb*plus_14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB\*Plus 14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_14_rhel-8_x86_64.mdx deleted file mode 100644 index 2f0c8c8ae9d..00000000000 --- a/install_template/renders/edb*plus_14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB\*Plus 14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx deleted file mode 100644 index f400a621bfa..00000000000 --- a/install_template/renders/edb*plus_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-12_x86_64.mdx b/install_template/renders/edb*plus_14_sles-12_x86_64.mdx deleted file mode 100644 index b23758994bd..00000000000 --- a/install_template/renders/edb*plus_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx deleted file mode 100644 index a2807e37dd0..00000000000 --- a/install_template/renders/edb*plus_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_sles-15_x86_64.mdx b/install_template/renders/edb*plus_14_sles-15_x86_64.mdx deleted file mode 100644 index fbff3c41a33..00000000000 --- a/install_template/renders/edb*plus_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index ce5e32cc089..00000000000 --- a/install_template/renders/edb*plus_14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 74863a360ce..00000000000 --- a/install_template/renders/edb*plus_14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx b/install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx deleted file mode 100644 index 2b1cf4227dd..00000000000 --- a/install_template/renders/edb*plus_9.6_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB\*Plus 9.6 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as96-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx b/install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx deleted file mode 100644 index 2e091845342..00000000000 --- a/install_template/renders/edb*plus_9.6_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB\*Plus 9.6 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as96-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx b/install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx deleted file mode 100644 index 8dd65771ee5..00000000000 --- a/install_template/renders/edb*plus_9.6_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB\*Plus 9.6 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx b/install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx deleted file mode 100644 index 02333efd75d..00000000000 --- a/install_template/renders/edb*plus_9.6_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 9.6 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx b/install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx deleted file mode 100644 index dc6811ff5a9..00000000000 --- a/install_template/renders/edb*plus_9.6_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB\*Plus 9.6 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as96-edbplus -```` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx b/install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx deleted file mode 100644 index 55638d2611d..00000000000 --- a/install_template/renders/edb*plus_9.6_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB\*Plus 9.6 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as96-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx b/install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx deleted file mode 100644 index 5567080b004..00000000000 --- a/install_template/renders/edb*plus_9.6_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB\*Plus 9.6 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as96-edbplus -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx b/install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx deleted file mode 100644 index 8f0987b5e6a..00000000000 --- a/install_template/renders/edb*plus_9.6_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB\*Plus 9.6 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as96-edbplus -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx b/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx deleted file mode 100644 index 29c34778d92..00000000000 --- a/install_template/renders/edb*plus_9.6_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 9.6 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx b/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx deleted file mode 100644 index 4164645644e..00000000000 --- a/install_template/renders/edb*plus_9.6_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB\*Plus 9.6 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx b/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx deleted file mode 100644 index a413d6352b3..00000000000 --- a/install_template/renders/edb*plus_9.6_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 9.6 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx b/install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx deleted file mode 100644 index 9273f1c3299..00000000000 --- a/install_template/renders/edb*plus_9.6_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB\*Plus 9.6 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 007212a2add..00000000000 --- a/install_template/renders/edb*plus_9.6_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 9.6 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index f342ff47443..00000000000 --- a/install_template/renders/edb*plus_9.6_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB\*Plus 9.6 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as96-edbplus -``` - -## Initial Configuration diff --git a/install_template/renders/edb-bart_2.6_almalinux-8-or-rocky-linux-8_x86_64.mdx b/install_template/renders/edb-bart_2.6_almalinux-8-or-rocky-linux-8_x86_64.mdx deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx b/install_template/renders/edb-bart_2.6_centos-7_ppc64le.mdx deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx b/install_template/renders/edb-bart_2.6_centos-7_x86_64.mdx deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx deleted file mode 100644 index 2bfe5d44f33..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB PgpoolII 4.1 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool41 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx deleted file mode 100644 index 4b4ebc4d76b..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB PgpoolII 4.1 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool41 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx deleted file mode 100644 index 051e095f5ca..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB PgpoolII 4.1 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx deleted file mode 100644 index 85b575cd420..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.1 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx deleted file mode 100644 index 34ada05af41..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB PgpoolII 4.1 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pgpool41 -```` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx deleted file mode 100644 index bcfbf334987..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB PgpoolII 4.1 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool41 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx deleted file mode 100644 index ab45d24a26a..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB PgpoolII 4.1 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool41 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx deleted file mode 100644 index 12d80658bcc..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB PgpoolII 4.1 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool41 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx deleted file mode 100644 index c62b24d9c5c..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4.1 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx deleted file mode 100644 index 4a79157854a..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4.1 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx deleted file mode 100644 index c2f3310d222..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4.1 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx deleted file mode 100644 index 5f3467bb31f..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4.1 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 541d4302b29..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.1 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index ad3d58a666a..00000000000 --- a/install_template/renders/edb-pgpoolii_4.1_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.1 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool41 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx deleted file mode 100644 index 570106d9273..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB PgpoolII 4.2 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool42 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx deleted file mode 100644 index 8c014a651af..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB PgpoolII 4.2 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool42 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx deleted file mode 100644 index 31b3093fe72..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB PgpoolII 4.2 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx deleted file mode 100644 index 35a8157538a..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.2 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx deleted file mode 100644 index a16e6de2908..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB PgpoolII 4.2 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pgpool42 -```` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx deleted file mode 100644 index b3e61270f97..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB PgpoolII 4.2 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool42 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx deleted file mode 100644 index f401211c83c..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB PgpoolII 4.2 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool42 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx deleted file mode 100644 index dca371c1b20..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB PgpoolII 4.2 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool42 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx deleted file mode 100644 index 7eef53f45ea..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4.2 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx deleted file mode 100644 index ef80fe3a40f..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4.2 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx deleted file mode 100644 index aa3dfcf10c8..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4.2 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx deleted file mode 100644 index 0fedfd9a08a..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4.2 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index a6b79acadad..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.2 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 48b158ad359..00000000000 --- a/install_template/renders/edb-pgpoolii_4.2_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.2 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool42 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx deleted file mode 100644 index 45f919c221a..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing EDB PgpoolII 4.3 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool43 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx deleted file mode 100644 index d36992e4924..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing EDB PgpoolII 4.3 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pgpool43 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx deleted file mode 100644 index 655ef06d2c8..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing EDB PgpoolII 4.3 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx deleted file mode 100644 index 7e45c07669e..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.3 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx deleted file mode 100644 index 355bfa32131..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing EDB PgpoolII 4.3 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pgpool43 -```` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx deleted file mode 100644 index 195adfd1b00..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing EDB PgpoolII 4.3 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool43 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx deleted file mode 100644 index 278bf245d6c..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing EDB PgpoolII 4.3 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pgpool43 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx deleted file mode 100644 index f4b373bcf03..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing EDB PgpoolII 4.3 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pgpool43 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx deleted file mode 100644 index 31287ca9067..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4.3 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx deleted file mode 100644 index fd76673aa04..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing EDB PgpoolII 4.3 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx deleted file mode 100644 index e054b05c2be..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4.3 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx deleted file mode 100644 index 4da0450122c..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4.3 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 449af56e5a8..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.3 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index ec6380762b9..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4.3 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool43 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx deleted file mode 100644 index 1b8228d13a8..00000000000 --- a/install_template/renders/edb-pgpoolii_4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool4 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx deleted file mode 100644 index 82dff23c1be..00000000000 --- a/install_template/renders/edb-pgpoolii_4_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing EDB PgpoolII 4 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-pgpool4 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 102b06437c5..00000000000 --- a/install_template/renders/edb-pgpoolii_4_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool4 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index a9021c00f6d..00000000000 --- a/install_template/renders/edb-pgpoolii_4_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing EDB PgpoolII 4 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pgpool4 -``` - -## Initial Configuration diff --git a/install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx deleted file mode 100644 index 2bd592c81de..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_10_centos-7_ppc64le.mdx +++ /dev/null @@ -1,147 +0,0 @@ -# Installing EDB Postgres Advanced Server 10 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as10-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-10 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as10/bin/pg_ctl status -D /var/lib/edb/as10/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx deleted file mode 100644 index 0932628fb05..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_10_centos-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 10 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as10-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-10 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as10/bin/pg_ctl status -D /var/lib/edb/as10/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx deleted file mode 100644 index 6288266f22a..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_local.mdx +++ /dev/null @@ -1,166 +0,0 @@ -# Installing EDB Postgres Advanced Server 10 on RHEL 7 local - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -```shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - -# Install the `createrepo` utility on the source server to create the local repository: -yum install -y yum-utils createrepo - -# Import EDB GPG key installed from edb-repo and also the other repositories: -rpm --import /etc/pki/rpm-gpg/* - -# Create the download directory, download all the required packages and populate it using `createrepo`: -$ mkdir -p /tmp/yumdownloaddir -$ cd /tmp/yumdownloaddir -$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart -$ createrepo /tmp/yumdownloaddir - -# Zip up the download directory, ready to be shipped to the target server(s): -$ cd /tmp -$ tar -zcvf yumdownloaddir.tgz yumdownloaddir - -# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. -sudo su - -tar -xvf /tmp/yumdownloaddir.tgz - -# Install the edb repo file and import the EDB GPG key from the archive: -yum localinstall yumdownloaddir/edb-repo*.rpm -rpm --import /etc/pki/rpm-gpg/* - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: -cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo -vi /etc/yum.repos.d/edb_local.repo -[edb-localrepo] -name=EnterpriseDB Localrepo for install without internet access -baseurl=file:///tmp/yumdownloaddir/ -enabled=1 -repo_gpgcheck=0 -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY -#skip_if_unavailable = 1 -#keepcache = 0 -``` - -## Installing the Package - -```shell -yum -y install edb-as10-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-10 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx deleted file mode 100644 index 3218bacc2dd..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,148 +0,0 @@ -# Installing EDB Postgres Advanced Server 10 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - - -```shell -yum -y install edb-as10-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-10 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx deleted file mode 100644 index aa377f0a783..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_10_rhel-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 10 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - -```shell -yum -y install edb-as10-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as10`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as10/bin/edb-as-10-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-10 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx deleted file mode 100644 index b0e40a59837..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_centos-7_ppc64le.mdx +++ /dev/null @@ -1,147 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as11/bin/pg_ctl status -D /var/lib/edb/as11/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx deleted file mode 100644 index c15d587d010..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_centos-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as11/bin/pg_ctl status -D /var/lib/edb/as11/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx deleted file mode 100644 index 990aae12fc6..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_centos-8_x86_64.mdx +++ /dev/null @@ -1,137 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as11-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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as11/bin/pg_ctl status -D /var/lib/edb/as11/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx deleted file mode 100644 index bab06d235d5..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_debian-9_x86_64.mdx +++ /dev/null @@ -1,115 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as11-server -```` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx deleted file mode 100644 index 76bd1d38076..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_local.mdx +++ /dev/null @@ -1,166 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on RHEL 7 local - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -```shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - -# Install the `createrepo` utility on the source server to create the local repository: -yum install -y yum-utils createrepo - -# Import EDB GPG key installed from edb-repo and also the other repositories: -rpm --import /etc/pki/rpm-gpg/* - -# Create the download directory, download all the required packages and populate it using `createrepo`: -$ mkdir -p /tmp/yumdownloaddir -$ cd /tmp/yumdownloaddir -$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart -$ createrepo /tmp/yumdownloaddir - -# Zip up the download directory, ready to be shipped to the target server(s): -$ cd /tmp -$ tar -zcvf yumdownloaddir.tgz yumdownloaddir - -# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. -sudo su - -tar -xvf /tmp/yumdownloaddir.tgz - -# Install the edb repo file and import the EDB GPG key from the archive: -yum localinstall yumdownloaddir/edb-repo*.rpm -rpm --import /etc/pki/rpm-gpg/* - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: -cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo -vi /etc/yum.repos.d/edb_local.repo -[edb-localrepo] -name=EnterpriseDB Localrepo for install without internet access -baseurl=file:///tmp/yumdownloaddir/ -enabled=1 -repo_gpgcheck=0 -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY -#skip_if_unavailable = 1 -#keepcache = 0 -``` - -## Installing the Package - -```shell -yum -y install edb-as11-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx deleted file mode 100644 index 2840225ef28..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,148 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - - -```shell -yum -y install edb-as11-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx deleted file mode 100644 index ce37b8cd79e..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_rhel-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - -```shell -yum -y install edb-as11-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx deleted file mode 100644 index 255e2b8dc6c..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_rhel-8_Linux on IBM Power (ppc64le).mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on RHEL 8 Linux on IBM Power (ppc64le) - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx deleted file mode 100644 index 6e9ed322c3b..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_rhel-8_x86_64.mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as11`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx deleted file mode 100644 index 749f6447b34..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_sles-12_ppc64le.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx deleted file mode 100644 index 58f8e8a56ac..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_sles-12_x86_64.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx deleted file mode 100644 index b23a3dc7ca4..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_sles-15_ppc64le.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx deleted file mode 100644 index f549e187875..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_sles-15_x86_64.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-11 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 250322fd478..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_11_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 11 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx deleted file mode 100644 index 86dad488227..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_centos-7_ppc64le.mdx +++ /dev/null @@ -1,147 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as12/bin/pg_ctl status -D /var/lib/edb/as12/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx deleted file mode 100644 index a294126e075..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_centos-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as12/bin/pg_ctl status -D /var/lib/edb/as12/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx deleted file mode 100644 index 5ebaaa47388..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_centos-8_x86_64.mdx +++ /dev/null @@ -1,137 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as12-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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as12/bin/pg_ctl status -D /var/lib/edb/as12/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx deleted file mode 100644 index aaeec8934b8..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_debian-10_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx deleted file mode 100644 index 4530918e4b7..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_debian-9_x86_64.mdx +++ /dev/null @@ -1,115 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as12-server -```` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx deleted file mode 100644 index 01cb86a4280..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_local.mdx +++ /dev/null @@ -1,166 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on RHEL 7 local - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -```shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - -# Install the `createrepo` utility on the source server to create the local repository: -yum install -y yum-utils createrepo - -# Import EDB GPG key installed from edb-repo and also the other repositories: -rpm --import /etc/pki/rpm-gpg/* - -# Create the download directory, download all the required packages and populate it using `createrepo`: -$ mkdir -p /tmp/yumdownloaddir -$ cd /tmp/yumdownloaddir -$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart -$ createrepo /tmp/yumdownloaddir - -# Zip up the download directory, ready to be shipped to the target server(s): -$ cd /tmp -$ tar -zcvf yumdownloaddir.tgz yumdownloaddir - -# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. -sudo su - -tar -xvf /tmp/yumdownloaddir.tgz - -# Install the edb repo file and import the EDB GPG key from the archive: -yum localinstall yumdownloaddir/edb-repo*.rpm -rpm --import /etc/pki/rpm-gpg/* - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: -cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo -vi /etc/yum.repos.d/edb_local.repo -[edb-localrepo] -name=EnterpriseDB Localrepo for install without internet access -baseurl=file:///tmp/yumdownloaddir/ -enabled=1 -repo_gpgcheck=0 -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY -#skip_if_unavailable = 1 -#keepcache = 0 -``` - -## Installing the Package - -```shell -yum -y install edb-as12-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx deleted file mode 100644 index 72e6700ead0..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,148 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - - -```shell -yum -y install edb-as12-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx deleted file mode 100644 index 295cafcad05..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_rhel-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - -```shell -yum -y install edb-as12-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx deleted file mode 100644 index dda062a5783..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_rhel-8_Linux on IBM Power (ppc64le).mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on RHEL 8 Linux on IBM Power (ppc64le) - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx deleted file mode 100644 index 4dd8f4cdd3e..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_rhel-8_x86_64.mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as12`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx deleted file mode 100644 index 0a1ea4d9bd7..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_sles-12_ppc64le.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx deleted file mode 100644 index b874e3f24e4..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_sles-12_x86_64.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx deleted file mode 100644 index 18e51f02911..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_sles-15_ppc64le.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx deleted file mode 100644 index b38b904b8c7..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_sles-15_x86_64.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-12 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 68b7c5e3450..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_12_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 12 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx deleted file mode 100644 index a0ffb3f2a6a..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_centos-7_ppc64le.mdx +++ /dev/null @@ -1,147 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as13/bin/pg_ctl status -D /var/lib/edb/as13/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx deleted file mode 100644 index fcf6e2ff2d8..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_centos-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as13/bin/pg_ctl status -D /var/lib/edb/as13/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx deleted file mode 100644 index 0cd70b8836d..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_centos-8_x86_64.mdx +++ /dev/null @@ -1,137 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as13-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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as13/bin/pg_ctl status -D /var/lib/edb/as13/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx deleted file mode 100644 index 76f65935bd3..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_debian-10_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx deleted file mode 100644 index 984037bedc5..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_debian-9_x86_64.mdx +++ /dev/null @@ -1,115 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as13-server -```` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx deleted file mode 100644 index 19a7233f741..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_local.mdx +++ /dev/null @@ -1,166 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on RHEL 7 local - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -```shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - -# Install the `createrepo` utility on the source server to create the local repository: -yum install -y yum-utils createrepo - -# Import EDB GPG key installed from edb-repo and also the other repositories: -rpm --import /etc/pki/rpm-gpg/* - -# Create the download directory, download all the required packages and populate it using `createrepo`: -$ mkdir -p /tmp/yumdownloaddir -$ cd /tmp/yumdownloaddir -$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart -$ createrepo /tmp/yumdownloaddir - -# Zip up the download directory, ready to be shipped to the target server(s): -$ cd /tmp -$ tar -zcvf yumdownloaddir.tgz yumdownloaddir - -# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. -sudo su - -tar -xvf /tmp/yumdownloaddir.tgz - -# Install the edb repo file and import the EDB GPG key from the archive: -yum localinstall yumdownloaddir/edb-repo*.rpm -rpm --import /etc/pki/rpm-gpg/* - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: -cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo -vi /etc/yum.repos.d/edb_local.repo -[edb-localrepo] -name=EnterpriseDB Localrepo for install without internet access -baseurl=file:///tmp/yumdownloaddir/ -enabled=1 -repo_gpgcheck=0 -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY -#skip_if_unavailable = 1 -#keepcache = 0 -``` - -## Installing the Package - -```shell -yum -y install edb-as13-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx deleted file mode 100644 index d4cf21d474e..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,148 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - - -```shell -yum -y install edb-as13-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx deleted file mode 100644 index e7a3b25ba2f..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_rhel-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - -```shell -yum -y install edb-as13-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx deleted file mode 100644 index f6479af2d51..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_rhel-8_Linux on IBM Power (ppc64le).mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on RHEL 8 Linux on IBM Power (ppc64le) - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx deleted file mode 100644 index 2783f479978..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_rhel-8_x86_64.mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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/as13`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx deleted file mode 100644 index a514a43f9d9..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_sles-12_ppc64le.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx deleted file mode 100644 index 32992d63526..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_sles-12_x86_64.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx deleted file mode 100644 index 52d60388def..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_sles-15_ppc64le.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx deleted file mode 100644 index 2d8d78348a3..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_sles-15_x86_64.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-13 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index a9db3de8fbe..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 4da739c2bc8..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_13_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 13 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx deleted file mode 100644 index e8a94b15373..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,147 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as14/bin/pg_ctl status -D /var/lib/edb/as14/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx deleted file mode 100644 index 8a7592ac31f..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_centos-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as14/bin/pg_ctl status -D /var/lib/edb/as14/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx deleted file mode 100644 index 8ed8304208c..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_centos-8_x86_64.mdx +++ /dev/null @@ -1,137 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as14-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`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as14/bin/pg_ctl status -D /var/lib/edb/as14/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx deleted file mode 100644 index 9e4ad5baec4..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_debian-10_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx deleted file mode 100644 index acc0d5acf09..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_debian-9_x86_64.mdx +++ /dev/null @@ -1,115 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as14-server -```` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx deleted file mode 100644 index 97248afbe06..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_local.mdx +++ /dev/null @@ -1,166 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on RHEL 7 local - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -```shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - -# Install the `createrepo` utility on the source server to create the local repository: -yum install -y yum-utils createrepo - -# Import EDB GPG key installed from edb-repo and also the other repositories: -rpm --import /etc/pki/rpm-gpg/* - -# Create the download directory, download all the required packages and populate it using `createrepo`: -$ mkdir -p /tmp/yumdownloaddir -$ cd /tmp/yumdownloaddir -$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart -$ createrepo /tmp/yumdownloaddir - -# Zip up the download directory, ready to be shipped to the target server(s): -$ cd /tmp -$ tar -zcvf yumdownloaddir.tgz yumdownloaddir - -# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. -sudo su - -tar -xvf /tmp/yumdownloaddir.tgz - -# Install the edb repo file and import the EDB GPG key from the archive: -yum localinstall yumdownloaddir/edb-repo*.rpm -rpm --import /etc/pki/rpm-gpg/* - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: -cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo -vi /etc/yum.repos.d/edb_local.repo -[edb-localrepo] -name=EnterpriseDB Localrepo for install without internet access -baseurl=file:///tmp/yumdownloaddir/ -enabled=1 -repo_gpgcheck=0 -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY -#skip_if_unavailable = 1 -#keepcache = 0 -``` - -## Installing the Package - -```shell -yum -y install edb-as14-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx deleted file mode 100644 index ce0008ee46a..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,148 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - - -```shell -yum -y install edb-as14-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx deleted file mode 100644 index 03d682f33e6..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - -```shell -yum -y install edb-as14-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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 - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx deleted file mode 100644 index f7f19c0fbaf..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_rhel-8_Linux on IBM Power (ppc64le).mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on RHEL 8 Linux on IBM Power (ppc64le) - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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 - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx deleted file mode 100644 index 7e67566c6ae..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,130 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available 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 - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx deleted file mode 100644 index 727428ce4c7..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx deleted file mode 100644 index 54e8ea5cbc0..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx deleted file mode 100644 index 0905764be84..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx deleted file mode 100644 index a1ca5f468d3..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-14 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 210b6e89e23..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index acce5469b0b..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,110 +0,0 @@ -# Installing EDB Postgres Advanced Server 14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-server -``` - -## Initial Configuration - -For Debian/Ubuntu platforms, initializing and starting of the database cluster is done along with the package installation. - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx deleted file mode 100644 index 68020247a62..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_ppc64le.mdx +++ /dev/null @@ -1,147 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as96-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as9.6/bin/pg_ctl status -D /var/lib/edb/as9.6/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx deleted file mode 100644 index 904cc652eba..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_centos-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as96-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To ensure the installation and initial configuration was successful, check the status of your cluster: - - ```sh - /usr/edb/as9.6/bin/pg_ctl status -D /var/lib/edb/as9.6/data - ``` - - See [Managing Cluster > Managing Services] for more information. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx deleted file mode 100644 index ba8661a292c..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_local.mdx +++ /dev/null @@ -1,166 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on RHEL 7 local - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -```shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - -# Install the `createrepo` utility on the source server to create the local repository: -yum install -y yum-utils createrepo - -# Import EDB GPG key installed from edb-repo and also the other repositories: -rpm --import /etc/pki/rpm-gpg/* - -# Create the download directory, download all the required packages and populate it using `createrepo`: -$ mkdir -p /tmp/yumdownloaddir -$ cd /tmp/yumdownloaddir -$ repotrack parted edb-repo edb-as*-server java edb-pem edb-efm* edb-migrationtoolkit ppas-xdb edb-as*-pgagent.x86_64 edb-bart -$ createrepo /tmp/yumdownloaddir - -# Zip up the download directory, ready to be shipped to the target server(s): -$ cd /tmp -$ tar -zcvf yumdownloaddir.tgz yumdownloaddir - -# Now login to the target server and copy the .tgz (zip) file to the /tmp directory using scp, or rsync, or any of the other methods. Then unzip it on all the servers needing EDB software. -sudo su - -tar -xvf /tmp/yumdownloaddir.tgz - -# Install the edb repo file and import the EDB GPG key from the archive: -yum localinstall yumdownloaddir/edb-repo*.rpm -rpm --import /etc/pki/rpm-gpg/* - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Create an `edb_local.repo` file in /etc/yum.repos.d/ with the following contents: -cp /etc/yum.repos.d/edb.repo /etc/yum.repos.d/edb_local.repo -vi /etc/yum.repos.d/edb_local.repo -[edb-localrepo] -name=EnterpriseDB Localrepo for install without internet access -baseurl=file:///tmp/yumdownloaddir/ -enabled=1 -repo_gpgcheck=0 -gpgcheck=1 -gpgkey=file:///etc/pki/rpm-gpg/ENTERPRISEDB-GPG-KEY -#skip_if_unavailable = 1 -#keepcache = 0 -``` - -## Installing the Package - -```shell -yum -y install edb-as96-server -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx deleted file mode 100644 index ba693c30ab3..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,148 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - - -```shell -yum -y install edb-as96-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx deleted file mode 100644 index a9ab32e596f..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_rhel-7_x86_64.mdx +++ /dev/null @@ -1,129 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - - -```shell -yum -y install edb-as96-server -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available 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/as9.6`. - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx deleted file mode 100644 index ce895c0629d..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_ppc64le.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx deleted file mode 100644 index cbe07b6dd7d..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_sles-12_x86_64.mdx +++ /dev/null @@ -1,124 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx deleted file mode 100644 index f8ba8391105..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_ppc64le.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx b/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx deleted file mode 100644 index e77efa697d6..00000000000 --- a/install_template/renders/edb-postgres-advanced-server_9.6_sles-15_x86_64.mdx +++ /dev/null @@ -1,123 +0,0 @@ -# Installing EDB Postgres Advanced Server 9.6 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as96-server -``` - -## Initial Configuration - -1. Initialize the database cluster: - - ```sh - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as9.6/bin/edb-as-96-setup initdb - ``` - -1. Start the database cluster: - - ```sh - systemctl start edb-as-9.6 - ``` - -## Connecting to Your Database cluster - -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. - -1. To work in your cluster, login as `enterprisedb` user: - - ```sh - su - enterprisedb - ``` - - See [Managing Your Cluster > Managing Services], for more information. - -1. Connect to the database server using psql command line client: - - ```sh - psql edb - ``` - - See [Managing Your Cluster > Connecting to Your Cluster], for more information including how to use pgAdmin4 to connect to your cluster using its graphical interface. - -1. Then, assign a password to the database superuser `enterprisedb`: - - ```sh - ALTER ROLE enterprisedb IDENTIFIED BY password; - ``` - -## Creating a Database - -This section steps you through creating and adding data to a simple database. - -1. Create a database (named hr): - - ```sh - CREATE DATABASE hr; - ``` - -1. Connect to the new database and create a table (named dept): - - ```sh - \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)); - ``` - -1. Add data to the table: - - ```sh - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - ``` - -1. You can use simple SQL commands to query the database and retrieve information about the data you have added to the table: - - ```sh - SELECT * FROM dept; - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` diff --git a/install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx deleted file mode 100644 index cb96b71bf1b..00000000000 --- a/install_template/renders/failover-manager_3.1_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Failover Manager 3.1 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm31 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx b/install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx deleted file mode 100644 index 606a04e710e..00000000000 --- a/install_template/renders/failover-manager_3.1_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Failover Manager 3.1 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm31 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx b/install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx deleted file mode 100644 index c9b7200e98c..00000000000 --- a/install_template/renders/failover-manager_3.1_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Failover Manager 3.1 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx b/install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx deleted file mode 100644 index d1375682197..00000000000 --- a/install_template/renders/failover-manager_3.1_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 3.1 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx b/install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx deleted file mode 100644 index d780f7ddcf6..00000000000 --- a/install_template/renders/failover-manager_3.1_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Failover Manager 3.1 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-efm31 -```` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx deleted file mode 100644 index d6784a2b36b..00000000000 --- a/install_template/renders/failover-manager_3.1_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Failover Manager 3.1 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm31 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx deleted file mode 100644 index 7cc89ab8075..00000000000 --- a/install_template/renders/failover-manager_3.1_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Failover Manager 3.1 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm31 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx deleted file mode 100644 index 7b26889501b..00000000000 --- a/install_template/renders/failover-manager_3.1_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Failover Manager 3.1 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-efm31 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx deleted file mode 100644 index 98d7e154ff7..00000000000 --- a/install_template/renders/failover-manager_3.1_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 3.1 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx b/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx deleted file mode 100644 index fc32384c5a0..00000000000 --- a/install_template/renders/failover-manager_3.1_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 3.1 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx deleted file mode 100644 index 0454b2eb767..00000000000 --- a/install_template/renders/failover-manager_3.1_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 3.1 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx b/install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx deleted file mode 100644 index 4ca86e90a59..00000000000 --- a/install_template/renders/failover-manager_3.1_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 3.1 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 5a66b8cb4db..00000000000 --- a/install_template/renders/failover-manager_3.1_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 3.1 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 28c716857b3..00000000000 --- a/install_template/renders/failover-manager_3.1_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 3.1 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm31 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx deleted file mode 100644 index 7d58981c973..00000000000 --- a/install_template/renders/failover-manager_4.1_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Failover Manager 4.1 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm41 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx deleted file mode 100644 index 67dac00e6b2..00000000000 --- a/install_template/renders/failover-manager_4.1_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Failover Manager 4.1 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm41 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx deleted file mode 100644 index 38c72d33800..00000000000 --- a/install_template/renders/failover-manager_4.1_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Failover Manager 4.1 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx deleted file mode 100644 index b568e1ded58..00000000000 --- a/install_template/renders/failover-manager_4.1_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.1 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx deleted file mode 100644 index 60874e0508f..00000000000 --- a/install_template/renders/failover-manager_4.1_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Failover Manager 4.1 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-efm41 -```` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx deleted file mode 100644 index 622f87a16a5..00000000000 --- a/install_template/renders/failover-manager_4.1_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Failover Manager 4.1 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm41 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx deleted file mode 100644 index fce57cbef69..00000000000 --- a/install_template/renders/failover-manager_4.1_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Failover Manager 4.1 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm41 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx deleted file mode 100644 index 49d8b200c2a..00000000000 --- a/install_template/renders/failover-manager_4.1_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Failover Manager 4.1 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-efm41 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx deleted file mode 100644 index 698566c37c2..00000000000 --- a/install_template/renders/failover-manager_4.1_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.1 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx deleted file mode 100644 index baf6298a82e..00000000000 --- a/install_template/renders/failover-manager_4.1_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.1 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx deleted file mode 100644 index 029cd12aec3..00000000000 --- a/install_template/renders/failover-manager_4.1_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.1 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx deleted file mode 100644 index 9432eadc133..00000000000 --- a/install_template/renders/failover-manager_4.1_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.1 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 3f36c4e4adb..00000000000 --- a/install_template/renders/failover-manager_4.1_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.1 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 89ce8a933cd..00000000000 --- a/install_template/renders/failover-manager_4.1_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.1 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm41 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx deleted file mode 100644 index 43f9c809f46..00000000000 --- a/install_template/renders/failover-manager_4.2_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Failover Manager 4.2 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm42 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx deleted file mode 100644 index 2bb67debbc2..00000000000 --- a/install_template/renders/failover-manager_4.2_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Failover Manager 4.2 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm42 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx deleted file mode 100644 index 0448e3f007e..00000000000 --- a/install_template/renders/failover-manager_4.2_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Failover Manager 4.2 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx deleted file mode 100644 index e736781a13f..00000000000 --- a/install_template/renders/failover-manager_4.2_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.2 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx deleted file mode 100644 index 0359f7992fc..00000000000 --- a/install_template/renders/failover-manager_4.2_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Failover Manager 4.2 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-efm42 -```` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx deleted file mode 100644 index c9512e577af..00000000000 --- a/install_template/renders/failover-manager_4.2_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Failover Manager 4.2 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm42 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx deleted file mode 100644 index 482b62bbde6..00000000000 --- a/install_template/renders/failover-manager_4.2_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Failover Manager 4.2 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm42 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx deleted file mode 100644 index 70c0ff613c5..00000000000 --- a/install_template/renders/failover-manager_4.2_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Failover Manager 4.2 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-efm42 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx deleted file mode 100644 index ada58639089..00000000000 --- a/install_template/renders/failover-manager_4.2_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.2 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx deleted file mode 100644 index 07e70950dbc..00000000000 --- a/install_template/renders/failover-manager_4.2_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.2 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx deleted file mode 100644 index 3e38b46769e..00000000000 --- a/install_template/renders/failover-manager_4.2_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.2 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx deleted file mode 100644 index c4ad3f14702..00000000000 --- a/install_template/renders/failover-manager_4.2_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.2 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index faa0c33874b..00000000000 --- a/install_template/renders/failover-manager_4.2_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.2 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 65176cf52a2..00000000000 --- a/install_template/renders/failover-manager_4.2_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.2 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm42 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx deleted file mode 100644 index 89216a380d2..00000000000 --- a/install_template/renders/failover-manager_4.3_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Failover Manager 4.3 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm43 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx deleted file mode 100644 index 2d0b3875773..00000000000 --- a/install_template/renders/failover-manager_4.3_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Failover Manager 4.3 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm43 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx deleted file mode 100644 index 8c2c732bd8d..00000000000 --- a/install_template/renders/failover-manager_4.3_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Failover Manager 4.3 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx deleted file mode 100644 index 458dbfde2fd..00000000000 --- a/install_template/renders/failover-manager_4.3_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.3 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx deleted file mode 100644 index a65a1608f93..00000000000 --- a/install_template/renders/failover-manager_4.3_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Failover Manager 4.3 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-efm43 -```` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx deleted file mode 100644 index e2396201cb0..00000000000 --- a/install_template/renders/failover-manager_4.3_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Failover Manager 4.3 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm43 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx deleted file mode 100644 index a6b167dd972..00000000000 --- a/install_template/renders/failover-manager_4.3_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Failover Manager 4.3 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm43 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx deleted file mode 100644 index 4ce6a52a440..00000000000 --- a/install_template/renders/failover-manager_4.3_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Failover Manager 4.3 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-efm43 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx deleted file mode 100644 index 87ba58e15d9..00000000000 --- a/install_template/renders/failover-manager_4.3_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.3 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx deleted file mode 100644 index d4ac4b8718f..00000000000 --- a/install_template/renders/failover-manager_4.3_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.3 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx deleted file mode 100644 index c9a8fb21a7e..00000000000 --- a/install_template/renders/failover-manager_4.3_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.3 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx deleted file mode 100644 index 5cafe4a98f8..00000000000 --- a/install_template/renders/failover-manager_4.3_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.3 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 508737c3dec..00000000000 --- a/install_template/renders/failover-manager_4.3_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.3 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index c4ec57b9ce5..00000000000 --- a/install_template/renders/failover-manager_4.3_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.3 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm43 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx deleted file mode 100644 index fd8483d20b7..00000000000 --- a/install_template/renders/failover-manager_4.4_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Failover Manager 4.4 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm44 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx deleted file mode 100644 index 95bfe21e3bc..00000000000 --- a/install_template/renders/failover-manager_4.4_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Failover Manager 4.4 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm44 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx deleted file mode 100644 index b63207114b0..00000000000 --- a/install_template/renders/failover-manager_4.4_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Failover Manager 4.4 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx deleted file mode 100644 index c412e646ced..00000000000 --- a/install_template/renders/failover-manager_4.4_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.4 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx deleted file mode 100644 index 4559b0d2e29..00000000000 --- a/install_template/renders/failover-manager_4.4_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Failover Manager 4.4 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-efm44 -```` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx deleted file mode 100644 index 8f2e7bc49ba..00000000000 --- a/install_template/renders/failover-manager_4.4_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Failover Manager 4.4 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm44 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx deleted file mode 100644 index 553f172745c..00000000000 --- a/install_template/renders/failover-manager_4.4_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Failover Manager 4.4 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm44 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx deleted file mode 100644 index 6c7f8a65b14..00000000000 --- a/install_template/renders/failover-manager_4.4_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Failover Manager 4.4 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-efm44 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx deleted file mode 100644 index 4b593169bf0..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.4 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx deleted file mode 100644 index 839aec263f3..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4.4 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx deleted file mode 100644 index 53310d7382e..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.4 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx deleted file mode 100644 index d8907980d0a..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4.4 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 9c6abf151db..00000000000 --- a/install_template/renders/failover-manager_4.4_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.4 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 65380d6ddd5..00000000000 --- a/install_template/renders/failover-manager_4.4_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4.4 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm44 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_centos-7_ppc64le.mdx b/install_template/renders/failover-manager_4_centos-7_ppc64le.mdx deleted file mode 100644 index d8dcda4add1..00000000000 --- a/install_template/renders/failover-manager_4_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Failover Manager 4 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm4 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_centos-7_x86_64.mdx b/install_template/renders/failover-manager_4_centos-7_x86_64.mdx deleted file mode 100644 index c2a7a9d095e..00000000000 --- a/install_template/renders/failover-manager_4_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Failover Manager 4 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-efm4 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_centos-8_x86_64.mdx b/install_template/renders/failover-manager_4_centos-8_x86_64.mdx deleted file mode 100644 index cff9f344d54..00000000000 --- a/install_template/renders/failover-manager_4_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Failover Manager 4 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_debian-10_x86_64.mdx b/install_template/renders/failover-manager_4_debian-10_x86_64.mdx deleted file mode 100644 index 13bfcbbc071..00000000000 --- a/install_template/renders/failover-manager_4_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_debian-9_x86_64.mdx b/install_template/renders/failover-manager_4_debian-9_x86_64.mdx deleted file mode 100644 index f530a58a0df..00000000000 --- a/install_template/renders/failover-manager_4_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Failover Manager 4 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-efm4 -```` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx b/install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx deleted file mode 100644 index 780135e82e2..00000000000 --- a/install_template/renders/failover-manager_4_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Failover Manager 4 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm4 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_rhel-7_x86_64.mdx b/install_template/renders/failover-manager_4_rhel-7_x86_64.mdx deleted file mode 100644 index ff90e099633..00000000000 --- a/install_template/renders/failover-manager_4_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Failover Manager 4 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-efm4 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_rhel-8_x86_64.mdx b/install_template/renders/failover-manager_4_rhel-8_x86_64.mdx deleted file mode 100644 index 87a38182fa0..00000000000 --- a/install_template/renders/failover-manager_4_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Failover Manager 4 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-efm4 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx deleted file mode 100644 index ba5376d3a3a..00000000000 --- a/install_template/renders/failover-manager_4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4_sles-12_x86_64.mdx deleted file mode 100644 index 31b07d35ca7..00000000000 --- a/install_template/renders/failover-manager_4_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Failover Manager 4 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx deleted file mode 100644 index a40325fac57..00000000000 --- a/install_template/renders/failover-manager_4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4_sles-15_x86_64.mdx deleted file mode 100644 index 5ed75dd3e36..00000000000 --- a/install_template/renders/failover-manager_4_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Failover Manager 4 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx b/install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 8342ae887f7..00000000000 --- a/install_template/renders/failover-manager_4_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx b/install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 77fc2db9ac7..00000000000 --- a/install_template/renders/failover-manager_4_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Failover Manager 4 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-efm4 -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx deleted file mode 100644 index cf142ec3b8f..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx deleted file mode 100644 index a6e7c5f8b11..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx deleted file mode 100644 index 149e7ffe0c8..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx deleted file mode 100644 index 710cb96a8d3..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx deleted file mode 100644 index c98e79ad4f0..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as11-hdfs_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx deleted file mode 100644 index eaea6f6555f..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx deleted file mode 100644 index 4f6aaa9bc91..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx deleted file mode 100644 index 592c3b589f8..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx deleted file mode 100644 index 27705622eff..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx deleted file mode 100644 index 53a51dbd25d..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx deleted file mode 100644 index 9f682968d23..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx deleted file mode 100644 index f0e1936311e..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 4c80cb43e38..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 8b85c7a82f4..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 11 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx deleted file mode 100644 index 3f4b18d6d65..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx deleted file mode 100644 index 567a1537456..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx deleted file mode 100644 index c5bf9575320..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx deleted file mode 100644 index 68f3fc5fe72..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx deleted file mode 100644 index aef2577a35b..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as12-hdfs_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx deleted file mode 100644 index 719a6c7617b..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx deleted file mode 100644 index fc2c850b71b..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx deleted file mode 100644 index df6c008f37c..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx deleted file mode 100644 index c1c4353efbb..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx deleted file mode 100644 index a11c485e151..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx deleted file mode 100644 index eef2b6af1c3..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx deleted file mode 100644 index cfb1db8179a..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 5f652effbb5..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 330d332f67c..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 12 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx deleted file mode 100644 index 4a84fadfa95..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx deleted file mode 100644 index a7ee418d996..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx deleted file mode 100644 index 7f2b0658742..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx deleted file mode 100644 index 68988f947e3..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx deleted file mode 100644 index 899f38d8146..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as13-hdfs_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx deleted file mode 100644 index f27566a46c9..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx deleted file mode 100644 index d10cadb3c8e..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx deleted file mode 100644 index 3bf06dc2caa..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx deleted file mode 100644 index 299be05fcb1..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx deleted file mode 100644 index 811eba778d6..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx deleted file mode 100644 index a6c69fb4b0b..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx deleted file mode 100644 index a6cb765d9d2..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 74cff12b522..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index ebe50e10382..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 13 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx deleted file mode 100644 index b5f56c265e1..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx deleted file mode 100644 index 434f0f27164..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx deleted file mode 100644 index f6ab8d80dbe..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx deleted file mode 100644 index 0a5c843e1c2..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx deleted file mode 100644 index 8384f57f66e..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as14-hdfs_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx deleted file mode 100644 index d2b61ca98f5..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx deleted file mode 100644 index 7da6a89f676..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-hdfs_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx deleted file mode 100644 index 2cd143d2c16..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-hdfs_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx deleted file mode 100644 index 6862e686092..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx deleted file mode 100644 index 9a9246bbe4f..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx deleted file mode 100644 index a2d063679ed..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx deleted file mode 100644 index df823838a15..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index eb6c6e8e7b7..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index fdea3da0afe..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Hadoop Foreign Data Wrapper 14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-hdfs_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx deleted file mode 100644 index 8a2a365ded7..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx deleted file mode 100644 index 489a842bebc..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx deleted file mode 100644 index fadbf0bd74c..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx deleted file mode 100644 index 9b902a55c31..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx deleted file mode 100644 index 542053ec45a..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as11-mongo_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx deleted file mode 100644 index 6aa55f02c82..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx deleted file mode 100644 index 72d24e64025..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx deleted file mode 100644 index 41605e0d4af..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx deleted file mode 100644 index ee7bf1fcc2b..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx deleted file mode 100644 index 941a4590bef..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx deleted file mode 100644 index 08b89f91751..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx deleted file mode 100644 index 017443bb7da..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index a6bca44dea1..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index afb5f394f69..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 11 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx deleted file mode 100644 index 04090df2a96..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx deleted file mode 100644 index a667d1f4ff3..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx deleted file mode 100644 index 02ac9fea434..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx deleted file mode 100644 index e97fa3056c1..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx deleted file mode 100644 index c8aa656b3f3..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as12-mongo_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx deleted file mode 100644 index c28125701d3..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx deleted file mode 100644 index 1f7433c7949..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx deleted file mode 100644 index 245702aa5b7..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx deleted file mode 100644 index 6cd31f24766..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx deleted file mode 100644 index 3fbdf66336c..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx deleted file mode 100644 index bfb18997602..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx deleted file mode 100644 index ed789404a54..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 4a0d0caa546..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index ff0e781c256..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 12 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx deleted file mode 100644 index b99baed0dd7..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx deleted file mode 100644 index 4548e9e8aa8..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx deleted file mode 100644 index 62bf9d791f6..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx deleted file mode 100644 index f2faa02c54f..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx deleted file mode 100644 index d26ace1364d..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as13-mongo_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx deleted file mode 100644 index a647c7c5579..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx deleted file mode 100644 index a364adf741e..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx deleted file mode 100644 index d41bd67880b..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx deleted file mode 100644 index e9a0c3cea92..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx deleted file mode 100644 index cbebf5361d7..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx deleted file mode 100644 index 92d2abf5d32..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx deleted file mode 100644 index e1bef87d199..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index c963f7a4c07..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 403b446a092..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 13 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx deleted file mode 100644 index 86c1a0c3688..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx deleted file mode 100644 index 19c284f09d6..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx deleted file mode 100644 index ab14339b7aa..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx deleted file mode 100644 index 0e183444618..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx deleted file mode 100644 index 3b24efdecd6..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as14-mongo_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx deleted file mode 100644 index 124f7ed72d0..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx deleted file mode 100644 index 334a62a51f4..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-mongo_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx deleted file mode 100644 index e829d015b19..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-mongo_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx deleted file mode 100644 index 7ac17dbba76..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx deleted file mode 100644 index 28c8f184582..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx deleted file mode 100644 index 38bc00be37a..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx deleted file mode 100644 index 670e3ea1efe..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index fc0cf1048dc..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index a75810be615..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MongoDB Foreign Data Wrapper 14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-mongo_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx deleted file mode 100644 index a9045457f64..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx deleted file mode 100644 index 492d78e8f40..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx deleted file mode 100644 index 0676c0a952c..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx deleted file mode 100644 index 1a43cba01aa..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx deleted file mode 100644 index b7459e09ad3..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as11-mysql8_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx deleted file mode 100644 index f52f9ffc935..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx deleted file mode 100644 index 6c1a3355853..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx deleted file mode 100644 index b07176d2aca..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx deleted file mode 100644 index 7257df7f75d..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx deleted file mode 100644 index 707a110fb74..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx deleted file mode 100644 index d7f36a26f46..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx deleted file mode 100644 index db0dbf985eb..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 5044171248b..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 8c1b512eddf..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_11_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 11 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx deleted file mode 100644 index 35b8c426c7a..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx deleted file mode 100644 index ab76eb2a5de..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx deleted file mode 100644 index 971ac6c5f50..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx deleted file mode 100644 index 33d8901754d..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx deleted file mode 100644 index 6159e64df68..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as12-mysql8_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx deleted file mode 100644 index ff1a6209f83..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx deleted file mode 100644 index 53d029e90e7..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx deleted file mode 100644 index a92cf68818c..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx deleted file mode 100644 index b9fa7381dd7..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx deleted file mode 100644 index cabd42020b7..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx deleted file mode 100644 index 36e77e04843..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx deleted file mode 100644 index 9d2a148599e..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 8d8176257d9..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 22032c535f1..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_12_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 12 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx deleted file mode 100644 index 8e1ca98a3ac..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx deleted file mode 100644 index 552cc782d5f..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx deleted file mode 100644 index 3dcf8fc6b04..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx deleted file mode 100644 index d716a569f69..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx deleted file mode 100644 index 31845bba3ac..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as13-mysql8_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx deleted file mode 100644 index 9bc6c5429ec..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx deleted file mode 100644 index 1e788123d41..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx deleted file mode 100644 index 4a0087017db..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx deleted file mode 100644 index 14d554f2d52..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx deleted file mode 100644 index faa620d385d..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx deleted file mode 100644 index 0fd66f37470..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx deleted file mode 100644 index d9dd4d41000..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 87c3d84995a..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 605712eed98..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_13_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 13 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx deleted file mode 100644 index 99ce95400fe..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx deleted file mode 100644 index ef8cf4ce737..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx deleted file mode 100644 index b44586ba978..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx deleted file mode 100644 index 06bd6431268..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx deleted file mode 100644 index f3f56f31d49..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as14-mysql8_fdw -```` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx deleted file mode 100644 index 0e88e992089..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx deleted file mode 100644 index 8b0f5a226a9..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-mysql8_fdw -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx deleted file mode 100644 index 13f07e4b8fb..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-mysql8_fdw -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx deleted file mode 100644 index 9fd76889aa7..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx deleted file mode 100644 index dff18f1458d..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx deleted file mode 100644 index b2d8b342158..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx deleted file mode 100644 index d41fd3046bb..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 67e6eaaf184..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index e3ef0464b54..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing MySQL Foreign Data Wrapper 14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-mysql8_fdw -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_centos-7_ppc64le.mdx b/install_template/renders/postgis_11_centos-7_ppc64le.mdx deleted file mode 100644 index 54134adbd47..00000000000 --- a/install_template/renders/postgis_11_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing PostGIS 11 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_11_centos-7_x86_64.mdx b/install_template/renders/postgis_11_centos-7_x86_64.mdx deleted file mode 100644 index c11589b2088..00000000000 --- a/install_template/renders/postgis_11_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing PostGIS 11 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_11_centos-8_x86_64.mdx b/install_template/renders/postgis_11_centos-8_x86_64.mdx deleted file mode 100644 index 8d40ea97154..00000000000 --- a/install_template/renders/postgis_11_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing PostGIS 11 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_debian-10_x86_64.mdx b/install_template/renders/postgis_11_debian-10_x86_64.mdx deleted file mode 100644 index 1de21f15b5a..00000000000 --- a/install_template/renders/postgis_11_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 11 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_debian-9_x86_64.mdx b/install_template/renders/postgis_11_debian-9_x86_64.mdx deleted file mode 100644 index a327c3ce82f..00000000000 --- a/install_template/renders/postgis_11_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing PostGIS 11 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as11-postgis3 -```` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_rhel-7_ppc64le.mdx b/install_template/renders/postgis_11_rhel-7_ppc64le.mdx deleted file mode 100644 index 2f740f2a048..00000000000 --- a/install_template/renders/postgis_11_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing PostGIS 11 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_11_rhel-7_x86_64.mdx b/install_template/renders/postgis_11_rhel-7_x86_64.mdx deleted file mode 100644 index f807cbc8fa6..00000000000 --- a/install_template/renders/postgis_11_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing PostGIS 11 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_11_rhel-8_x86_64.mdx b/install_template/renders/postgis_11_rhel-8_x86_64.mdx deleted file mode 100644 index a671ed1646c..00000000000 --- a/install_template/renders/postgis_11_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing PostGIS 11 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-12_ppc64le.mdx b/install_template/renders/postgis_11_sles-12_ppc64le.mdx deleted file mode 100644 index ceaaccac88a..00000000000 --- a/install_template/renders/postgis_11_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 11 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-12_x86_64.mdx b/install_template/renders/postgis_11_sles-12_x86_64.mdx deleted file mode 100644 index c71387ba362..00000000000 --- a/install_template/renders/postgis_11_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 11 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-15_ppc64le.mdx b/install_template/renders/postgis_11_sles-15_ppc64le.mdx deleted file mode 100644 index 34ff278b9e5..00000000000 --- a/install_template/renders/postgis_11_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 11 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_sles-15_x86_64.mdx b/install_template/renders/postgis_11_sles-15_x86_64.mdx deleted file mode 100644 index b49052a1aa4..00000000000 --- a/install_template/renders/postgis_11_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 11 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 995bae1948e..00000000000 --- a/install_template/renders/postgis_11_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 11 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 93e6ce5a498..00000000000 --- a/install_template/renders/postgis_11_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 11 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_centos-7_ppc64le.mdx b/install_template/renders/postgis_12_centos-7_ppc64le.mdx deleted file mode 100644 index 27b2fb1d40f..00000000000 --- a/install_template/renders/postgis_12_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing PostGIS 12 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_12_centos-7_x86_64.mdx b/install_template/renders/postgis_12_centos-7_x86_64.mdx deleted file mode 100644 index 52ccc34b865..00000000000 --- a/install_template/renders/postgis_12_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing PostGIS 12 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_12_centos-8_x86_64.mdx b/install_template/renders/postgis_12_centos-8_x86_64.mdx deleted file mode 100644 index 8e97f0ddbd1..00000000000 --- a/install_template/renders/postgis_12_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing PostGIS 12 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_debian-10_x86_64.mdx b/install_template/renders/postgis_12_debian-10_x86_64.mdx deleted file mode 100644 index 5d2b585dfb5..00000000000 --- a/install_template/renders/postgis_12_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 12 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_debian-9_x86_64.mdx b/install_template/renders/postgis_12_debian-9_x86_64.mdx deleted file mode 100644 index aaf6ece4c92..00000000000 --- a/install_template/renders/postgis_12_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing PostGIS 12 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as12-postgis3 -```` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_rhel-7_ppc64le.mdx b/install_template/renders/postgis_12_rhel-7_ppc64le.mdx deleted file mode 100644 index f26449af53e..00000000000 --- a/install_template/renders/postgis_12_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing PostGIS 12 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_12_rhel-7_x86_64.mdx b/install_template/renders/postgis_12_rhel-7_x86_64.mdx deleted file mode 100644 index 6d5fb1e8f7d..00000000000 --- a/install_template/renders/postgis_12_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing PostGIS 12 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_12_rhel-8_x86_64.mdx b/install_template/renders/postgis_12_rhel-8_x86_64.mdx deleted file mode 100644 index a3aecbebb44..00000000000 --- a/install_template/renders/postgis_12_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing PostGIS 12 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-12_ppc64le.mdx b/install_template/renders/postgis_12_sles-12_ppc64le.mdx deleted file mode 100644 index 5bc5f759172..00000000000 --- a/install_template/renders/postgis_12_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 12 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-12_x86_64.mdx b/install_template/renders/postgis_12_sles-12_x86_64.mdx deleted file mode 100644 index 487e8e9800f..00000000000 --- a/install_template/renders/postgis_12_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 12 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-15_ppc64le.mdx b/install_template/renders/postgis_12_sles-15_ppc64le.mdx deleted file mode 100644 index 8a575d5b584..00000000000 --- a/install_template/renders/postgis_12_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 12 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_sles-15_x86_64.mdx b/install_template/renders/postgis_12_sles-15_x86_64.mdx deleted file mode 100644 index ca1c8ad9e62..00000000000 --- a/install_template/renders/postgis_12_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 12 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 5c8df22fdd8..00000000000 --- a/install_template/renders/postgis_12_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 12 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 75e5ee1919d..00000000000 --- a/install_template/renders/postgis_12_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 12 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_centos-7_ppc64le.mdx b/install_template/renders/postgis_13_centos-7_ppc64le.mdx deleted file mode 100644 index 100d4b2cafe..00000000000 --- a/install_template/renders/postgis_13_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing PostGIS 13 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_13_centos-7_x86_64.mdx b/install_template/renders/postgis_13_centos-7_x86_64.mdx deleted file mode 100644 index c9e1ad25f85..00000000000 --- a/install_template/renders/postgis_13_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing PostGIS 13 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_13_centos-8_x86_64.mdx b/install_template/renders/postgis_13_centos-8_x86_64.mdx deleted file mode 100644 index 684bd3b61ad..00000000000 --- a/install_template/renders/postgis_13_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing PostGIS 13 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_debian-10_x86_64.mdx b/install_template/renders/postgis_13_debian-10_x86_64.mdx deleted file mode 100644 index 148cccec024..00000000000 --- a/install_template/renders/postgis_13_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 13 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_debian-9_x86_64.mdx b/install_template/renders/postgis_13_debian-9_x86_64.mdx deleted file mode 100644 index 3591ed156b2..00000000000 --- a/install_template/renders/postgis_13_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing PostGIS 13 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as13-postgis3 -```` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_rhel-7_ppc64le.mdx b/install_template/renders/postgis_13_rhel-7_ppc64le.mdx deleted file mode 100644 index aa8e5bba9ee..00000000000 --- a/install_template/renders/postgis_13_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing PostGIS 13 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_13_rhel-7_x86_64.mdx b/install_template/renders/postgis_13_rhel-7_x86_64.mdx deleted file mode 100644 index c9dc263759d..00000000000 --- a/install_template/renders/postgis_13_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing PostGIS 13 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_13_rhel-8_x86_64.mdx b/install_template/renders/postgis_13_rhel-8_x86_64.mdx deleted file mode 100644 index a9037935830..00000000000 --- a/install_template/renders/postgis_13_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing PostGIS 13 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-12_ppc64le.mdx b/install_template/renders/postgis_13_sles-12_ppc64le.mdx deleted file mode 100644 index f835f066455..00000000000 --- a/install_template/renders/postgis_13_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 13 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-12_x86_64.mdx b/install_template/renders/postgis_13_sles-12_x86_64.mdx deleted file mode 100644 index 606fdaf1483..00000000000 --- a/install_template/renders/postgis_13_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 13 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-15_ppc64le.mdx b/install_template/renders/postgis_13_sles-15_ppc64le.mdx deleted file mode 100644 index 5e1bf30f4b5..00000000000 --- a/install_template/renders/postgis_13_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 13 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_sles-15_x86_64.mdx b/install_template/renders/postgis_13_sles-15_x86_64.mdx deleted file mode 100644 index b78490d0a60..00000000000 --- a/install_template/renders/postgis_13_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 13 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 34ea89ddd8c..00000000000 --- a/install_template/renders/postgis_13_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 13 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index f9ba677c03d..00000000000 --- a/install_template/renders/postgis_13_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 13 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_centos-7_ppc64le.mdx b/install_template/renders/postgis_14_centos-7_ppc64le.mdx deleted file mode 100644 index 5e3b14f8f62..00000000000 --- a/install_template/renders/postgis_14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing PostGIS 14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_14_centos-7_x86_64.mdx b/install_template/renders/postgis_14_centos-7_x86_64.mdx deleted file mode 100644 index 5f6fd0fd004..00000000000 --- a/install_template/renders/postgis_14_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing PostGIS 14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_14_centos-8_x86_64.mdx b/install_template/renders/postgis_14_centos-8_x86_64.mdx deleted file mode 100644 index e425fddcfa6..00000000000 --- a/install_template/renders/postgis_14_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing PostGIS 14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_debian-10_x86_64.mdx b/install_template/renders/postgis_14_debian-10_x86_64.mdx deleted file mode 100644 index 6658245869f..00000000000 --- a/install_template/renders/postgis_14_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_debian-9_x86_64.mdx b/install_template/renders/postgis_14_debian-9_x86_64.mdx deleted file mode 100644 index cfe510fc5a0..00000000000 --- a/install_template/renders/postgis_14_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing PostGIS 14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as14-postgis3 -```` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_rhel-7_ppc64le.mdx b/install_template/renders/postgis_14_rhel-7_ppc64le.mdx deleted file mode 100644 index fbff0e10d2e..00000000000 --- a/install_template/renders/postgis_14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing PostGIS 14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_14_rhel-7_x86_64.mdx b/install_template/renders/postgis_14_rhel-7_x86_64.mdx deleted file mode 100644 index 7b3add63988..00000000000 --- a/install_template/renders/postgis_14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing PostGIS 14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-postgis3 -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_14_rhel-8_x86_64.mdx b/install_template/renders/postgis_14_rhel-8_x86_64.mdx deleted file mode 100644 index eae127f7bef..00000000000 --- a/install_template/renders/postgis_14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing PostGIS 14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-postgis3 -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-12_ppc64le.mdx b/install_template/renders/postgis_14_sles-12_ppc64le.mdx deleted file mode 100644 index fbb3155d747..00000000000 --- a/install_template/renders/postgis_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-12_x86_64.mdx b/install_template/renders/postgis_14_sles-12_x86_64.mdx deleted file mode 100644 index b1df2952500..00000000000 --- a/install_template/renders/postgis_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing PostGIS 14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-15_ppc64le.mdx b/install_template/renders/postgis_14_sles-15_ppc64le.mdx deleted file mode 100644 index 8dff301d531..00000000000 --- a/install_template/renders/postgis_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_sles-15_x86_64.mdx b/install_template/renders/postgis_14_sles-15_x86_64.mdx deleted file mode 100644 index 617a1ce1145..00000000000 --- a/install_template/renders/postgis_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing PostGIS 14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index dd677f5e847..00000000000 --- a/install_template/renders/postgis_14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index e7f5693b0f2..00000000000 --- a/install_template/renders/postgis_14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing PostGIS 14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-postgis3 -``` - -## Initial Configuration diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx deleted file mode 100644 index b783dc72203..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_centos-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pem -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx deleted file mode 100644 index 34d6f08dad7..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_centos-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pem -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx deleted file mode 100644 index 4cbe72ef8b2..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_centos-8_x86_64.mdx +++ /dev/null @@ -1,59 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx deleted file mode 100644 index fe9d7d7e577..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_debian-10_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx deleted file mode 100644 index 64fd2358b6f..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_debian-9_x86_64.mdx +++ /dev/null @@ -1,57 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pem -```` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx deleted file mode 100644 index bfdbbd9b22e..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,76 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pem -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx deleted file mode 100644 index d6a7cbb696f..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_rhel-7_x86_64.mdx +++ /dev/null @@ -1,58 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pem -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx deleted file mode 100644 index d505ae456c2..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_rhel-8_x86_64.mdx +++ /dev/null @@ -1,60 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pem -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx deleted file mode 100644 index 26b3a1628a1..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_sles-12_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx deleted file mode 100644 index d128d4bbbc1..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_sles-12_x86_64.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx deleted file mode 100644 index 4ade69ace5f..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_sles-15_ppc64le.mdx +++ /dev/null @@ -1,61 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx deleted file mode 100644 index 10750c6b33e..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_sles-15_x86_64.mdx +++ /dev/null @@ -1,61 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index fcb836205b2..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index f7ce6d95424..00000000000 --- a/install_template/renders/postgres-enterprise-manager_7_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Postgres Enterprise Manager 7 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx deleted file mode 100644 index a18e6ff16c0..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_centos-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pem -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx deleted file mode 100644 index 9dc86548a4f..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_centos-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-pem -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx deleted file mode 100644 index d7178fa4ebd..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_centos-8_x86_64.mdx +++ /dev/null @@ -1,59 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx deleted file mode 100644 index dbc24a1617d..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_debian-10_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx deleted file mode 100644 index 4819db27701..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_debian-9_x86_64.mdx +++ /dev/null @@ -1,57 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-pem -```` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx deleted file mode 100644 index c958bbf75ef..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,76 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pem -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx deleted file mode 100644 index ffdb44a6751..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_rhel-7_x86_64.mdx +++ /dev/null @@ -1,58 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-pem -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx deleted file mode 100644 index 9f238219946..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_rhel-8_x86_64.mdx +++ /dev/null @@ -1,60 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-pem -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx deleted file mode 100644 index f29392bf137..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_sles-12_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx deleted file mode 100644 index cfa63b8d794..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_sles-12_x86_64.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_12_SP5/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx deleted file mode 100644 index 34018a1cb04..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_sles-15_ppc64le.mdx +++ /dev/null @@ -1,61 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx deleted file mode 100644 index d10cb900d82..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_sles-15_x86_64.mdx +++ /dev/null @@ -1,61 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -# Install the following repository for PEM dependencies - -```shell -zypper addrepo https://download.opensuse.org/repositories/Apache:/Modules/SLE_15_SP3/Apache:Modules.repo -``` - -## Installing the Package - -```shell -zypper -n install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 852ac2f2c57..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx b/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 321068fd2c3..00000000000 --- a/install_template/renders/postgres-enterprise-manager_8_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Postgres Enterprise Manager 8 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-pem -``` - -## Initial Configuration - -```shell -# You can configure the PEM server using the following command: -/usr/edb/pem/bin/configure-pem-server.sh -``` - -For more details, see [Configuring the PEM Server on Linux](https://www.enterprisedb.com/docs/pem/latest/pem_inst_guide_linux/04_installing_postgres_enterprise_manager/05_configuring_the_pem_server_on_linux/). diff --git a/install_template/renders/replication-manager_7_centos-7_ppc64le.mdx b/install_template/renders/replication-manager_7_centos-7_ppc64le.mdx deleted file mode 100644 index 25998b26283..00000000000 --- a/install_template/renders/replication-manager_7_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Replication Manager 7 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-xdb -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_centos-7_x86_64.mdx b/install_template/renders/replication-manager_7_centos-7_x86_64.mdx deleted file mode 100644 index dd4157807cb..00000000000 --- a/install_template/renders/replication-manager_7_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Replication Manager 7 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-xdb -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_centos-8_x86_64.mdx b/install_template/renders/replication-manager_7_centos-8_x86_64.mdx deleted file mode 100644 index 57d0b96d0dc..00000000000 --- a/install_template/renders/replication-manager_7_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Replication Manager 7 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_debian-10_x86_64.mdx b/install_template/renders/replication-manager_7_debian-10_x86_64.mdx deleted file mode 100644 index 34af099304c..00000000000 --- a/install_template/renders/replication-manager_7_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Replication Manager 7 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_debian-9_x86_64.mdx b/install_template/renders/replication-manager_7_debian-9_x86_64.mdx deleted file mode 100644 index 6356e1c2f4e..00000000000 --- a/install_template/renders/replication-manager_7_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Replication Manager 7 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-xdb -```` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx b/install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx deleted file mode 100644 index f69dc7c2b9a..00000000000 --- a/install_template/renders/replication-manager_7_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Replication Manager 7 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-xdb -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_rhel-7_x86_64.mdx b/install_template/renders/replication-manager_7_rhel-7_x86_64.mdx deleted file mode 100644 index b2850af8451..00000000000 --- a/install_template/renders/replication-manager_7_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Replication Manager 7 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-xdb -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_rhel-8_x86_64.mdx b/install_template/renders/replication-manager_7_rhel-8_x86_64.mdx deleted file mode 100644 index c0f8484a918..00000000000 --- a/install_template/renders/replication-manager_7_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Replication Manager 7 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-xdb -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx b/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx deleted file mode 100644 index 73c73b65a3d..00000000000 --- a/install_template/renders/replication-manager_7_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Replication Manager 7 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-12_x86_64.mdx b/install_template/renders/replication-manager_7_sles-12_x86_64.mdx deleted file mode 100644 index 702fb5098f6..00000000000 --- a/install_template/renders/replication-manager_7_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Replication Manager 7 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx b/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx deleted file mode 100644 index 566316013cf..00000000000 --- a/install_template/renders/replication-manager_7_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Replication Manager 7 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_sles-15_x86_64.mdx b/install_template/renders/replication-manager_7_sles-15_x86_64.mdx deleted file mode 100644 index d38c7f821a2..00000000000 --- a/install_template/renders/replication-manager_7_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Replication Manager 7 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx b/install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index acb9a0c0cf0..00000000000 --- a/install_template/renders/replication-manager_7_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Replication Manager 7 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx b/install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index a05f6daac19..00000000000 --- a/install_template/renders/replication-manager_7_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Replication Manager 7 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-xdb -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_11_centos-7_ppc64le.mdx deleted file mode 100644 index eacb846630f..00000000000 --- a/install_template/renders/slony-replication_11_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Slony Replication 11 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_centos-7_x86_64.mdx b/install_template/renders/slony-replication_11_centos-7_x86_64.mdx deleted file mode 100644 index 620b1cd9358..00000000000 --- a/install_template/renders/slony-replication_11_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Slony Replication 11 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as11-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_centos-8_x86_64.mdx b/install_template/renders/slony-replication_11_centos-8_x86_64.mdx deleted file mode 100644 index 8b858cb4067..00000000000 --- a/install_template/renders/slony-replication_11_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Slony Replication 11 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_debian-10_x86_64.mdx b/install_template/renders/slony-replication_11_debian-10_x86_64.mdx deleted file mode 100644 index 9082b41c50b..00000000000 --- a/install_template/renders/slony-replication_11_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 11 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_debian-9_x86_64.mdx b/install_template/renders/slony-replication_11_debian-9_x86_64.mdx deleted file mode 100644 index 75d97a6ab68..00000000000 --- a/install_template/renders/slony-replication_11_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Slony Replication 11 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as11-slony-replication -```` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx deleted file mode 100644 index 5c5e137f654..00000000000 --- a/install_template/renders/slony-replication_11_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Slony Replication 11 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_11_rhel-7_x86_64.mdx deleted file mode 100644 index c4dd81e6bda..00000000000 --- a/install_template/renders/slony-replication_11_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Slony Replication 11 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as11-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_11_rhel-8_x86_64.mdx deleted file mode 100644 index 1f438d5c6e4..00000000000 --- a/install_template/renders/slony-replication_11_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Slony Replication 11 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as11-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx deleted file mode 100644 index f4ceed0a5b4..00000000000 --- a/install_template/renders/slony-replication_11_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 11 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-12_x86_64.mdx b/install_template/renders/slony-replication_11_sles-12_x86_64.mdx deleted file mode 100644 index 7f3235e6d50..00000000000 --- a/install_template/renders/slony-replication_11_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 11 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx deleted file mode 100644 index 861da2cf64f..00000000000 --- a/install_template/renders/slony-replication_11_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 11 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_sles-15_x86_64.mdx b/install_template/renders/slony-replication_11_sles-15_x86_64.mdx deleted file mode 100644 index 57fb0739c1f..00000000000 --- a/install_template/renders/slony-replication_11_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 11 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 1a2dc924e67..00000000000 --- a/install_template/renders/slony-replication_11_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 11 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index d936e65e454..00000000000 --- a/install_template/renders/slony-replication_11_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 11 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as11-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_12_centos-7_ppc64le.mdx deleted file mode 100644 index 8f1573dd004..00000000000 --- a/install_template/renders/slony-replication_12_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Slony Replication 12 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_centos-7_x86_64.mdx b/install_template/renders/slony-replication_12_centos-7_x86_64.mdx deleted file mode 100644 index 7eda22b850d..00000000000 --- a/install_template/renders/slony-replication_12_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Slony Replication 12 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as12-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_centos-8_x86_64.mdx b/install_template/renders/slony-replication_12_centos-8_x86_64.mdx deleted file mode 100644 index dcdd09cb1ef..00000000000 --- a/install_template/renders/slony-replication_12_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Slony Replication 12 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_debian-10_x86_64.mdx b/install_template/renders/slony-replication_12_debian-10_x86_64.mdx deleted file mode 100644 index 7fff1331009..00000000000 --- a/install_template/renders/slony-replication_12_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 12 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_debian-9_x86_64.mdx b/install_template/renders/slony-replication_12_debian-9_x86_64.mdx deleted file mode 100644 index ec88c17de85..00000000000 --- a/install_template/renders/slony-replication_12_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Slony Replication 12 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as12-slony-replication -```` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx deleted file mode 100644 index 5a337e8a1e7..00000000000 --- a/install_template/renders/slony-replication_12_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Slony Replication 12 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_12_rhel-7_x86_64.mdx deleted file mode 100644 index e1b03c298ed..00000000000 --- a/install_template/renders/slony-replication_12_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Slony Replication 12 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as12-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_12_rhel-8_x86_64.mdx deleted file mode 100644 index 6bef38c73dd..00000000000 --- a/install_template/renders/slony-replication_12_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Slony Replication 12 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as12-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx deleted file mode 100644 index e6610b9bae9..00000000000 --- a/install_template/renders/slony-replication_12_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 12 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-12_x86_64.mdx b/install_template/renders/slony-replication_12_sles-12_x86_64.mdx deleted file mode 100644 index 4098d167c4a..00000000000 --- a/install_template/renders/slony-replication_12_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 12 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx deleted file mode 100644 index 7d99fbacf1b..00000000000 --- a/install_template/renders/slony-replication_12_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 12 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_sles-15_x86_64.mdx b/install_template/renders/slony-replication_12_sles-15_x86_64.mdx deleted file mode 100644 index 9b02973ab3c..00000000000 --- a/install_template/renders/slony-replication_12_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 12 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 14fd18724b8..00000000000 --- a/install_template/renders/slony-replication_12_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 12 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 78520a0b60f..00000000000 --- a/install_template/renders/slony-replication_12_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 12 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as12-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_13_centos-7_ppc64le.mdx deleted file mode 100644 index b1e9e18890d..00000000000 --- a/install_template/renders/slony-replication_13_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Slony Replication 13 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_centos-7_x86_64.mdx b/install_template/renders/slony-replication_13_centos-7_x86_64.mdx deleted file mode 100644 index ef16352a250..00000000000 --- a/install_template/renders/slony-replication_13_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Slony Replication 13 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as13-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_centos-8_x86_64.mdx b/install_template/renders/slony-replication_13_centos-8_x86_64.mdx deleted file mode 100644 index a23fb2711c1..00000000000 --- a/install_template/renders/slony-replication_13_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Slony Replication 13 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_debian-10_x86_64.mdx b/install_template/renders/slony-replication_13_debian-10_x86_64.mdx deleted file mode 100644 index 68a571ad877..00000000000 --- a/install_template/renders/slony-replication_13_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 13 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_debian-9_x86_64.mdx b/install_template/renders/slony-replication_13_debian-9_x86_64.mdx deleted file mode 100644 index 75433306891..00000000000 --- a/install_template/renders/slony-replication_13_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Slony Replication 13 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as13-slony-replication -```` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx deleted file mode 100644 index 1cc0920e725..00000000000 --- a/install_template/renders/slony-replication_13_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Slony Replication 13 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_13_rhel-7_x86_64.mdx deleted file mode 100644 index 65624a45eb3..00000000000 --- a/install_template/renders/slony-replication_13_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Slony Replication 13 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as13-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_13_rhel-8_x86_64.mdx deleted file mode 100644 index 11358eefef0..00000000000 --- a/install_template/renders/slony-replication_13_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Slony Replication 13 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as13-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx deleted file mode 100644 index 0b96ecfec46..00000000000 --- a/install_template/renders/slony-replication_13_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 13 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-12_x86_64.mdx b/install_template/renders/slony-replication_13_sles-12_x86_64.mdx deleted file mode 100644 index 6e024708fa9..00000000000 --- a/install_template/renders/slony-replication_13_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 13 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx deleted file mode 100644 index 7b72c7b5842..00000000000 --- a/install_template/renders/slony-replication_13_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 13 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_sles-15_x86_64.mdx b/install_template/renders/slony-replication_13_sles-15_x86_64.mdx deleted file mode 100644 index edb0fa06374..00000000000 --- a/install_template/renders/slony-replication_13_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 13 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 6395abf5762..00000000000 --- a/install_template/renders/slony-replication_13_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 13 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 5fda90d9dbe..00000000000 --- a/install_template/renders/slony-replication_13_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 13 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as13-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_centos-7_ppc64le.mdx b/install_template/renders/slony-replication_14_centos-7_ppc64le.mdx deleted file mode 100644 index 4e6a0ebb8a7..00000000000 --- a/install_template/renders/slony-replication_14_centos-7_ppc64le.mdx +++ /dev/null @@ -1,62 +0,0 @@ -# Installing Slony Replication 14 on CentOS 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_centos-7_x86_64.mdx b/install_template/renders/slony-replication_14_centos-7_x86_64.mdx deleted file mode 100644 index 1d5ccf3e92b..00000000000 --- a/install_template/renders/slony-replication_14_centos-7_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ -# Installing Slony Replication 14 on CentOS 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -## Installing the Package - -```shell -yum -y install edb-as14-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_centos-8_x86_64.mdx b/install_template/renders/slony-replication_14_centos-8_x86_64.mdx deleted file mode 100644 index f97da5f3b83..00000000000 --- a/install_template/renders/slony-replication_14_centos-8_x86_64.mdx +++ /dev/null @@ -1,52 +0,0 @@ -# Installing Slony Replication 14 on CentOS 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install epel-release -dnf makecache -``` - -```shell -# Enable the powertools repository since EPEL packages may depend on packages from it: -dnf config-manager --set-enabled powertools -``` - -1. Disable the built-in PostgreSQL module: - - ```sh - dnf -qy module disable postgresql - ``` - -## Installing the Package - -```shell -dnf -y install edb-as14-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_debian-10_x86_64.mdx b/install_template/renders/slony-replication_14_debian-10_x86_64.mdx deleted file mode 100644 index 3f53c824ddf..00000000000 --- a/install_template/renders/slony-replication_14_debian-10_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 14 on Debian 10 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_debian-9_x86_64.mdx b/install_template/renders/slony-replication_14_debian-9_x86_64.mdx deleted file mode 100644 index 5f243a0b3d8..00000000000 --- a/install_template/renders/slony-replication_14_debian-9_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ -# Installing Slony Replication 14 on Debian 9 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the Repository by replacing 'USERNAME:PASSWORD' below with your username and password for the EDB repositories - -```shell -echo "deb https://USERNAME:PASSWORD@apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list -``` - -This creates the /etc/apt/sources.list.d/edb-stretch.list configuration file. - -# Add support for secure APT repositories: - -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: - -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: - -apt-get update - -```` - - -## Installing the Package - - -```shell -apt-get -y install edb-as14-slony-replication -```` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx b/install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx deleted file mode 100644 index fcace0b7fbc..00000000000 --- a/install_template/renders/slony-replication_14_rhel-7_ppc64le.mdx +++ /dev/null @@ -1,69 +0,0 @@ -# Installing Slony Replication 14 on RHEL 7 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Install Advance Toolchain - -```shell -rpm --import https://public.dhe.ibm.com/software/server/POWER/Linux/toolchain/at/redhat/RHEL7/gpg-pubkey-6976a827-5164221b - -cat > /etc/yum.repos.d/advance-toolchain.repo <:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_rhel-7_x86_64.mdx b/install_template/renders/slony-replication_14_rhel-7_x86_64.mdx deleted file mode 100644 index efa0b6ae2cb..00000000000 --- a/install_template/renders/slony-replication_14_rhel-7_x86_64.mdx +++ /dev/null @@ -1,51 +0,0 @@ -# Installing Slony Replication 14 on RHEL 7 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -yum -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -yum makecache -``` - -````shell -# Enable the optional, extras, and HA repositories since EPEL packages may depend on packages from these repositories: -subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" - - - -## Installing the Package - - -```shell -yum -y install edb-as14-slony-replication -```` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `yum list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_rhel-8_x86_64.mdx b/install_template/renders/slony-replication_14_rhel-8_x86_64.mdx deleted file mode 100644 index 883d19c82ff..00000000000 --- a/install_template/renders/slony-replication_14_rhel-8_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ -# Installing Slony Replication 14 on RHEL 8 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Set up the EDB repository: -dnf -y install https://yum.enterprisedb.com/edbrepos/edb-repo-latest.noarch.rpm - -# This creates the /etc/yum.repos.d/edb.repo configuration file. - -# Replace `'USERNAME:PASSWORD'` below with your username and password available from your -[EDB account](https://www.enterprisedb.com/user) in the edb.repo file: -sed -i "s@:@USERNAME:PASSWORD@" /etc/yum.repos.d/edb.repo - -# Install EPEL repository and refresh the cache: -dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -dnf makecache -``` - -```shell -# Enable the codeready-builder-for-rhel-8-*-rpms repository since EPEL packages may depend on packages from it -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 -``` - -## Installing the Package - -```shell -dnf -y install edb-as14-slony-replication -``` - -!!! Note -Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx b/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx deleted file mode 100644 index 261f997b286..00000000000 --- a/install_template/renders/slony-replication_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 14 on SLES 12 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-12_x86_64.mdx b/install_template/renders/slony-replication_14_sles-12_x86_64.mdx deleted file mode 100644 index c605de9fd94..00000000000 --- a/install_template/renders/slony-replication_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ -# Installing Slony Replication 14 on SLES 12 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx b/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx deleted file mode 100644 index 979b026714b..00000000000 --- a/install_template/renders/slony-replication_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 14 on SLES 15 ppc64le - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_sles-15_x86_64.mdx b/install_template/renders/slony-replication_14_sles-15_x86_64.mdx deleted file mode 100644 index 83670ea0399..00000000000 --- a/install_template/renders/slony-replication_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ -# Installing Slony Replication 14 on SLES 15 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -```shell -# Install the repository configuration -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Refresh the metadata -zypper refresh - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -## Installing the Package - -```shell -zypper -n install edb-as14-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx b/install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx deleted file mode 100644 index 9eadcfd7e99..00000000000 --- a/install_template/renders/slony-replication_14_ubuntu-18.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 14 on Ubuntu 18.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-slony-replication -``` - -## Initial Configuration diff --git a/install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx b/install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx deleted file mode 100644 index 9623b595262..00000000000 --- a/install_template/renders/slony-replication_14_ubuntu-20.04_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ -# Installing Slony Replication 14 on Ubuntu 20.04 x86_64 - -There are three steps to completing an installation: - -- Setting up the repository(#setting-up-the-repository) -- Installing the package(#installing-the-package) -- Performing the initial configuration(#initial-config) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -# Setup the EDB repository - -```shell -echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list - -# Replace '' and '' below with your username and password for the EDB repositories: -echo "machine apt.enterprisedb.com login password " > /etc/apt/auth.conf.d/edb.conf - - -# Add support for secure APT repositories: -apt-get -y install apt-transport-https - -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: -wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - - -# Update the repository meta data: -apt-get update -``` - -## Installing the Package - -```shell -apt-get -y install edb-as14-slony-replication -``` - -## Initial Configuration From 0562452352f55e0ed0341ce75b3320105c954ef0 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 22 Mar 2022 09:07:03 -0400 Subject: [PATCH 053/180] committing to solve conflicts, maybe? --- install_template/templates/platformBase/sles-15.njk | 1 + 1 file changed, 1 insertion(+) diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 0292c75ee6a..fad5c344170 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -28,3 +28,4 @@ zypper refresh zypper -n install {{ packageName }} ``` {% endblock installCommand %} + From 5dc8175aa7b6edae5672016a636902034e9c1685 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 23 Mar 2022 09:15:40 -0400 Subject: [PATCH 054/180] Experimenting with generating different install command for one product --- .../templates/products/failover-manager/base.njk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install_template/templates/products/failover-manager/base.njk b/install_template/templates/products/failover-manager/base.njk index 1af8521e91a..d494418b1ff 100644 --- a/install_template/templates/products/failover-manager/base.njk +++ b/install_template/templates/products/failover-manager/base.njk @@ -1,2 +1,8 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-efm{{ product.version | replace(".", "") }}{% endset %} +{% block installCommand %} +```shell +zypper -n install {{ packageName }}<4x> +``` +Where <4x> is the version of Failover Manager you are installing. +{% endblock installCommand %} \ No newline at end of file From 86b61decf029b0282e45f4feecbe08a8cc068d65 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 23 Mar 2022 09:25:45 -0400 Subject: [PATCH 055/180] another experiment with adding angle brackets to package name --- install_template/templates/products/failover-manager/base.njk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_template/templates/products/failover-manager/base.njk b/install_template/templates/products/failover-manager/base.njk index d494418b1ff..ed7215c54eb 100644 --- a/install_template/templates/products/failover-manager/base.njk +++ b/install_template/templates/products/failover-manager/base.njk @@ -1,8 +1,8 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName %}edb-efm{{ product.version | replace(".", "") }}{% endset %} +{% set packageName %}edb-efm<4x>{% endset %} {% block installCommand %} ```shell -zypper -n install {{ packageName }}<4x> +zypper -n install {{ packageName }} ``` Where <4x> is the version of Failover Manager you are installing. {% endblock installCommand %} \ No newline at end of file From 805eab5746fd85ee3e31ddaa5206210e7fa21298 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 23 Mar 2022 11:09:14 -0400 Subject: [PATCH 056/180] modified SLES 12 and 15 to match existing topics --- .../mysql-foreign-data-wrapper/sles-12.njk | 29 ++++++++++++++++++- .../mysql-foreign-data-wrapper/sles-15.njk | 29 ++++++++++++++++++- 2 files changed, 56 insertions(+), 2 deletions(-) diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk index 6e5742798fe..5793a369ddc 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk @@ -1,2 +1,29 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Install the MySQL community repository +wget https://dev.mysql.com/get/mysql80-community-release-sles12-5.noarch.rpm +rpm --import /etc/RPM-GPG-KEY-mysql-2022 + +# Enable the MySQL8 repository and disable the MySQL 5 repository +zypper modifyrepo -e mysql80-community +zypper modifyrepo -d mysql57-community + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk index 5fbf3f9c72b..7179bcea3e0 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk @@ -1,2 +1,29 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-15" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Install the community MySQL repository +rpm -i https://dev.mysql.com/get/mysql80-community-release-sl15-5.noarch.rpm +rpm --import /etc/RPM-GPG-KEY-mysql-2022 + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file From b3f64e7638924290d27bd304bc69aa1223b0ccb5 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 23 Mar 2022 11:31:49 -0400 Subject: [PATCH 057/180] matched template to existing SLES instructions on ppc, one fix for x86 --- .../mysql-foreign-data-wrapper/sles-12.njk | 5 ++++ .../sles-12_ppc64le.njk | 26 ++++++++++++++++- .../sles-15_ppc64le.njk | 29 ++++++++++++++++++- 3 files changed, 58 insertions(+), 2 deletions(-) diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk index 5793a369ddc..790c0035136 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12.njk @@ -11,6 +11,11 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration +# information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + # Install the MySQL community repository wget https://dev.mysql.com/get/mysql80-community-release-sles12-5.noarch.rpm rpm --import /etc/RPM-GPG-KEY-mysql-2022 diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk index 6e5742798fe..f3842f2818f 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-12_ppc64le.njk @@ -1,2 +1,26 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk index 4f520b292b4..a7a800c1fb5 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15_ppc64le.njk @@ -1,3 +1,30 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} \ No newline at end of file +{% set includePPC = true %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/{{ platform.arch }} + +# Install the community MySQL repository +rpm -i https://dev.mysql.com/get/mysql80-community-release-sl15-5.noarch.rpm +rpm --import /etc/RPM-GPG-KEY-mysql-2022 + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file From b561cc14162ada74effb94e1a02a22d1e7e2a667 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 23 Mar 2022 11:46:29 -0400 Subject: [PATCH 058/180] added SLES topics for EDB_Plus --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index af90d1cb27d..1b41a753bb9 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -271,8 +271,8 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [9.6, 11, 12, 13, 14] - # - name: EDB*Plus - # platforms: + - name: EDB*Plus + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] @@ -297,18 +297,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 12 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 15 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 15 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] - name: Failover Manager platforms: # - name: CentOS 7 From 5b2d2cb0dd5123e16e5d021df5613393b4247b57 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 23 Mar 2022 11:53:47 -0400 Subject: [PATCH 059/180] removed older versions of edb*plus --- install_template/config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 1b41a753bb9..b0b51fbc405 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -299,16 +299,16 @@ products: # supported versions: [9.6, 11, 12, 13, 14] - name: SLES 12 arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] + supported versions: [14] - name: SLES 12 arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] + supported versions: [14] - name: SLES 15 arch: x86_64 - supported versions: [9.6, 11, 12, 13, 14] + supported versions: [14] - name: SLES 15 arch: ppc64le - supported versions: [9.6, 11, 12, 13, 14] + supported versions: [14] - name: Failover Manager platforms: # - name: CentOS 7 From a4144890c1a405fd76e9a93a0b646e8ded68ed07 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 24 Mar 2022 09:39:49 -0400 Subject: [PATCH 060/180] added java 11 for SLES 15 --- install_template/templates/platformBase/sles-15.njk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index fad5c344170..0aefc29a24c 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -18,6 +18,9 @@ SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/{{ platform.arch }} +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk + # Refresh the metadata zypper refresh ``` From e828dd0f33c3c4c13d4bc3eb46246310512a6c53 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 24 Mar 2022 10:21:41 -0400 Subject: [PATCH 061/180] added SLES topics for OCI Connector --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index b0b51fbc405..96b4b4df841 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -75,8 +75,8 @@ products: - name: SLES 12 arch: x86_64 supported versions: [55] - # - name: EDB OCI Connector - # platforms: +- name: EDB OCI Connector + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [14.1.0.1] @@ -101,18 +101,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [14.1.0.1] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14.1.0.1] + - name: SLES 12 + arch: x86_64 + supported versions: [14.1.0.1] + - name: SLES 12 + arch: ppc64le + supported versions: [14.1.0.1] + - name: SLES 15 + arch: x86_64 + supported versions: [14.1.0.1] + - name: SLES 15 + arch: ppc64le + supported versions: [14.1.0.1] # - name: EDB ODBC Connector # platforms: # - name: CentOS 7 From c34768f80c5f32a52f8018a6eb7cd7058a6f924c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 24 Mar 2022 10:23:30 -0400 Subject: [PATCH 062/180] YAML syntax error --- install_template/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 96b4b4df841..23dbc70ce3b 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -75,8 +75,8 @@ products: - name: SLES 12 arch: x86_64 supported versions: [55] -- name: EDB OCI Connector - platforms: + - name: EDB OCI Connector + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [14.1.0.1] From 79b23057fb3f34a1a282ecd176a81078a4719452 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 28 Mar 2022 09:30:04 -0400 Subject: [PATCH 063/180] restructured prerequisites block for all OCI SLES topics --- .../products/edb-oci-connector/sles-12.njk | 23 ++++++++++++++++- .../edb-oci-connector/sles-12_ppc64le.njk | 23 ++++++++++++++++- .../products/edb-oci-connector/sles-15.njk | 25 ++++++++++++++++++- .../edb-oci-connector/sles-15_ppc64le.njk | 25 ++++++++++++++++++- 4 files changed, 92 insertions(+), 4 deletions(-) diff --git a/install_template/templates/products/edb-oci-connector/sles-12.njk b/install_template/templates/products/edb-oci-connector/sles-12.njk index a5923e3947f..aecce8fe6d3 100644 --- a/install_template/templates/products/edb-oci-connector/sles-12.njk +++ b/install_template/templates/products/edb-oci-connector/sles-12.njk @@ -1,2 +1,23 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh +``` + +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk index a5923e3947f..aecce8fe6d3 100644 --- a/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk +++ b/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk @@ -1,2 +1,23 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh +``` + +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-15.njk b/install_template/templates/products/edb-oci-connector/sles-15.njk index d5560509e3e..07a8c9a03fc 100644 --- a/install_template/templates/products/edb-oci-connector/sles-15.njk +++ b/install_template/templates/products/edb-oci-connector/sles-15.njk @@ -1,2 +1,25 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-15" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/{{ platform.arch }} + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk b/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk index 64f2ec5cbf3..562fd376a81 100644 --- a/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk +++ b/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk @@ -1,3 +1,26 @@ {% extends "products/edb-oci-connector/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} \ No newline at end of file +{% set includePPC = true %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/{{ platform.arch }} + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file From 191d05c5e668c29add68eeaa6c89934f52843590 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 28 Mar 2022 09:38:38 -0400 Subject: [PATCH 064/180] Added SLES topics for ODBC Connector --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 23dbc70ce3b..1c914b8e877 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -113,8 +113,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14.1.0.1] - # - name: EDB ODBC Connector - # platforms: + - name: EDB ODBC Connector + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [13.1.0.2] @@ -139,18 +139,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [13.1.0.2] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [13.1.0.2] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [13.1.0.2] + - name: SLES 12 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 12 + arch: ppc64le + supported versions: [13.1.0.2] + - name: SLES 15 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 15 + arch: ppc64le + supported versions: [13.1.0.2] # - name: EDB pgBouncer # platforms: # - name: CentOS 7 From ac188b7cd1c50cfd16fff37057fd0e5cabcbffa5 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 28 Mar 2022 10:56:55 -0400 Subject: [PATCH 065/180] Changes SLES templatesnto remove JAVA Seems like more products don't require java than those that do, so I removed java from template and added it to Prerequiste. section for: EDB*Plus JDBC 12 MGT 12 Failover 12 Hadoop 12 on ppc --- .../templates/platformBase/sles-12.njk | 4 --- .../templates/platformBase/sles-15.njk | 3 -- .../templates/products/edb*plus/sles-12.njk | 26 ++++++++++++++++- .../products/edb*plus/sles-12_ppc64le.njk | 26 ++++++++++++++++- .../templates/products/edb*plus/sles-15.njk | 28 ++++++++++++++++++- .../products/edb*plus/sles-15_ppc64le.njk | 28 ++++++++++++++++++- .../products/edb-jdbc-connector/sles-12.njk | 26 ++++++++++++++++- .../edb-jdbc-connector/sles-12_ppc64le.njk | 26 ++++++++++++++++- .../products/failover-manager/sles-12.njk | 26 ++++++++++++++++- .../failover-manager/sles-12_ppc64le.njk | 26 ++++++++++++++++- .../sles-12_ppc64le.njk | 26 ++++++++++++++++- 11 files changed, 229 insertions(+), 16 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index dd21fcd363a..b80795b8462 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -18,10 +18,6 @@ SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - {% endblock prerequisites %} {% block installCommand %} ```shell diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 0aefc29a24c..fad5c344170 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -18,9 +18,6 @@ SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/{{ platform.arch }} -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk - # Refresh the metadata zypper refresh ``` diff --git a/install_template/templates/products/edb*plus/sles-12.njk b/install_template/templates/products/edb*plus/sles-12.njk index af25d936d5c..85abd4b73a6 100644 --- a/install_template/templates/products/edb*plus/sles-12.njk +++ b/install_template/templates/products/edb*plus/sles-12.njk @@ -1,2 +1,26 @@ {% extends "products/edb*plus/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +{% endblock prerequisites %} diff --git a/install_template/templates/products/edb*plus/sles-12_ppc64le.njk b/install_template/templates/products/edb*plus/sles-12_ppc64le.njk index 46aaf8cdd9b..ef2a9911f24 100644 --- a/install_template/templates/products/edb*plus/sles-12_ppc64le.njk +++ b/install_template/templates/products/edb*plus/sles-12_ppc64le.njk @@ -1,3 +1,27 @@ {% extends "products/edb*plus/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% set includePPC = true %} \ No newline at end of file +{% set includePPC = true %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-15.njk b/install_template/templates/products/edb*plus/sles-15.njk index 835690eb4df..23e6d9ce17e 100644 --- a/install_template/templates/products/edb*plus/sles-15.njk +++ b/install_template/templates/products/edb*plus/sles-15.njk @@ -1,2 +1,28 @@ {% extends "products/edb*plus/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-15" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/{{ platform.arch }} + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-15_ppc64le.njk b/install_template/templates/products/edb*plus/sles-15_ppc64le.njk index 94bd21d28ca..bbecc327f77 100644 --- a/install_template/templates/products/edb*plus/sles-15_ppc64le.njk +++ b/install_template/templates/products/edb*plus/sles-15_ppc64le.njk @@ -1,3 +1,29 @@ {% extends "products/edb*plus/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} \ No newline at end of file +{% set includePPC = true %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/{{ platform.arch }} + +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk + +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/sles-12.njk b/install_template/templates/products/edb-jdbc-connector/sles-12.njk index 7ce8e343f4d..44f60323b25 100644 --- a/install_template/templates/products/edb-jdbc-connector/sles-12.njk +++ b/install_template/templates/products/edb-jdbc-connector/sles-12.njk @@ -1,2 +1,26 @@ {% extends "products/edb-jdbc-connector/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk index 7ce8e343f4d..44f60323b25 100644 --- a/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk +++ b/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk @@ -1,2 +1,26 @@ {% extends "products/edb-jdbc-connector/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/sles-12.njk b/install_template/templates/products/failover-manager/sles-12.njk index 129146a839c..af283537c91 100644 --- a/install_template/templates/products/failover-manager/sles-12.njk +++ b/install_template/templates/products/failover-manager/sles-12.njk @@ -1,2 +1,26 @@ {% extends "products/failover-manager/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/sles-12_ppc64le.njk b/install_template/templates/products/failover-manager/sles-12_ppc64le.njk index 129146a839c..af283537c91 100644 --- a/install_template/templates/products/failover-manager/sles-12_ppc64le.njk +++ b/install_template/templates/products/failover-manager/sles-12_ppc64le.njk @@ -1,2 +1,26 @@ {% extends "products/failover-manager/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk index 84b9ff1f885..1a9d49244cb 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk @@ -1,2 +1,26 @@ {% extends "products/hadoop-foreign-data-wrapper/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` + +{% endblock prerequisites %} \ No newline at end of file From 733f31c249acbc894d72f334ea8b462088879336 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 28 Mar 2022 11:56:17 -0400 Subject: [PATCH 066/180] adjustments to templates for Failover, Hadoop --- .../failover-manager/sles-12_ppc64le.njk | 24 ------------------- .../sles-12_ppc64le.njk | 4 ++-- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/install_template/templates/products/failover-manager/sles-12_ppc64le.njk b/install_template/templates/products/failover-manager/sles-12_ppc64le.njk index af283537c91..9f15a8082bd 100644 --- a/install_template/templates/products/failover-manager/sles-12_ppc64le.njk +++ b/install_template/templates/products/failover-manager/sles-12_ppc64le.njk @@ -1,26 +1,2 @@ {% extends "products/failover-manager/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk index 1a9d49244cb..d05f22952aa 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk @@ -19,8 +19,8 @@ SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} # Refresh the metadata zypper refresh -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk +# Install OpenJDK (version 11) for Java based components +zypper -n install java-11-openjdk ``` {% endblock prerequisites %} \ No newline at end of file From 984f2ba1887cf3674330988d433e9311e9cf3ae6 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 08:23:43 -0400 Subject: [PATCH 067/180] closed block with tick marks for SLES 12 --- install_template/templates/platformBase/sles-12.njk | 1 + 1 file changed, 1 insertion(+) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index b80795b8462..b46333f5b8f 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -17,6 +17,7 @@ SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} # Refresh the metadata zypper refresh +``` {% endblock prerequisites %} {% block installCommand %} From 038c772994498b7c929dc37f91b1f5a6379b9164 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 08:29:12 -0400 Subject: [PATCH 068/180] tweak to block for SLES 12 --- install_template/templates/platformBase/sles-12.njk | 1 - 1 file changed, 1 deletion(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index b46333f5b8f..58fc3c85f38 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -18,7 +18,6 @@ SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} # Refresh the metadata zypper refresh ``` - {% endblock prerequisites %} {% block installCommand %} ```shell From a5b2581e7d486974ddb6bf5941d787aa595f5251 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 08:45:30 -0400 Subject: [PATCH 069/180] added missing SLES 12 file for MGT, modified template for SLES 12 x86 --- .../products/failover-manager/sles-12.njk | 1 - .../products/migration-toolkit/sles-12.njk | 25 ++++++++++++++++++- .../migration-toolkit/sles-12_ppc64le.njk | 2 ++ 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk diff --git a/install_template/templates/products/failover-manager/sles-12.njk b/install_template/templates/products/failover-manager/sles-12.njk index af283537c91..0b030f07446 100644 --- a/install_template/templates/products/failover-manager/sles-12.njk +++ b/install_template/templates/products/failover-manager/sles-12.njk @@ -22,5 +22,4 @@ zypper refresh # Install OpenJDK (version 1.8) for Java based components zypper -n install java-1_8_0-openjdk ``` - {% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/sles-12.njk b/install_template/templates/products/migration-toolkit/sles-12.njk index 10ba722d276..f287c925ab7 100644 --- a/install_template/templates/products/migration-toolkit/sles-12.njk +++ b/install_template/templates/products/migration-toolkit/sles-12.njk @@ -1,2 +1,25 @@ {% extends "products/migration-toolkit/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` +{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk b/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk new file mode 100644 index 00000000000..459e87d293c --- /dev/null +++ b/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/migration-toolkit/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} From 788066b990cfbe6ae20e7811d4a8c5830478b268 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 08:52:47 -0400 Subject: [PATCH 070/180] added java to template for MGT SLES 12 ppc --- .../migration-toolkit/sles-15_ppc64le.njk | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk b/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk index 7a2eab13fef..6e0c11cdd03 100644 --- a/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk +++ b/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk @@ -1,3 +1,26 @@ {% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} \ No newline at end of file +{% set includePPC = true %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` +{% endblock prerequisites %} \ No newline at end of file From 99d74c8009242d9f6769ed6967b7ff624d02aec6 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 08:55:44 -0400 Subject: [PATCH 071/180] Revert "added java to template for MGT SLES 12 ppc" This reverts commit 074e85c32f5d4fda7ecbdfc601472e5cbad2da63. --- .../migration-toolkit/sles-15_ppc64le.njk | 25 +------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk b/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk index 6e0c11cdd03..7a2eab13fef 100644 --- a/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk +++ b/install_template/templates/products/migration-toolkit/sles-15_ppc64le.njk @@ -1,26 +1,3 @@ {% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` -{% endblock prerequisites %} \ No newline at end of file +{% set includePPC = true %} \ No newline at end of file From 8d0b09fc0f8a417cebd8cd759b85e817f560b9cd Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 08:57:52 -0400 Subject: [PATCH 072/180] added java to MGT SLES 12 ppc template --- .../migration-toolkit/sles-12_ppc64le.njk | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk b/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk index 459e87d293c..6e985dc9ec5 100644 --- a/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk +++ b/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk @@ -1,2 +1,26 @@ {% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-12" %} +{% set includePPC = true %} +{% block prerequisites %} +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/{{ platform.arch }} +SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} + +# Refresh the metadata +zypper refresh + +# Install OpenJDK (version 1.8) for Java based components +zypper -n install java-1_8_0-openjdk +``` +{% endblock prerequisites %} \ No newline at end of file From 7a09104d5b68786542dafdff886e6db27a779617 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 09:07:23 -0400 Subject: [PATCH 073/180] added SLES 12 to pgBouncer --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 1c914b8e877..3e55871f5f7 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -151,8 +151,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [13.1.0.2] - # - name: EDB pgBouncer - # platforms: + - name: EDB pgBouncer + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [1.14, 1.15, 1.16] @@ -177,18 +177,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [1.14, 1.15, 1.16] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [1.14, 1.15, 1.16] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [1.14, 1.15, 1.16] + - name: SLES 12 + arch: x86_64 + supported versions: [1.16] + - name: SLES 12 + arch: ppc64le + supported versions: [1.16] + - name: SLES 15 + arch: x86_64 + supported versions: [1.16] + - name: SLES 15 + arch: ppc64le + supported versions: [1.16] # - name: EDB PgpoolII # platforms: # - name: CentOS 7 From 8e6cfff9c53a0d77ddee73566bc5a260e0d607bf Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 09:21:47 -0400 Subject: [PATCH 074/180] added xx variable to base template for pgBouncer --- .../templates/products/edb-pgbouncer/base.njk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-pgbouncer/base.njk b/install_template/templates/products/edb-pgbouncer/base.njk index 936aa505fcf..31925f9e294 100644 --- a/install_template/templates/products/edb-pgbouncer/base.njk +++ b/install_template/templates/products/edb-pgbouncer/base.njk @@ -1,2 +1,8 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName %}edb-pgbouncer{{ product.version | replace(".", "") }}{% endset %} +{% set packageName %}edb-pgbouncer{{ product.version | replace(".", "") }}{% endset %} +{% block installCommand %} +```shell +zypper -n install {{ packageName }} +``` +Where is the version of EDB PgBouncer you are installing. +{% endblock installCommand %} \ No newline at end of file From 04a6ddc32536214a426856ad775d0a0ed6f92123 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 09:27:36 -0400 Subject: [PATCH 075/180] adjusted package name setting --- install_template/templates/products/edb-pgbouncer/base.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-pgbouncer/base.njk b/install_template/templates/products/edb-pgbouncer/base.njk index 31925f9e294..9aba44ac8f4 100644 --- a/install_template/templates/products/edb-pgbouncer/base.njk +++ b/install_template/templates/products/edb-pgbouncer/base.njk @@ -1,5 +1,5 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName %}edb-pgbouncer{{ product.version | replace(".", "") }}{% endset %} +{% set packageName %}edb-pgbouncer{% endset %} {% block installCommand %} ```shell zypper -n install {{ packageName }} From cd4e5c876fa39d68a06957d3549537331eda3833 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 09:41:12 -0400 Subject: [PATCH 076/180] another tweak to base file for pgBouncer --- install_template/templates/products/edb-pgbouncer/base.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-pgbouncer/base.njk b/install_template/templates/products/edb-pgbouncer/base.njk index 9aba44ac8f4..beb6d3c8ffd 100644 --- a/install_template/templates/products/edb-pgbouncer/base.njk +++ b/install_template/templates/products/edb-pgbouncer/base.njk @@ -4,5 +4,5 @@ ```shell zypper -n install {{ packageName }} ``` -Where is the version of EDB PgBouncer you are installing. +Where \ is the version of EDB PgBouncer you are installing. {% endblock installCommand %} \ No newline at end of file From aa3680c4c0a0e0785c38264780a0d09d7c7dfbd3 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 09:47:19 -0400 Subject: [PATCH 077/180] yet another tweak to base.njk --- install_template/templates/products/edb-pgbouncer/base.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-pgbouncer/base.njk b/install_template/templates/products/edb-pgbouncer/base.njk index beb6d3c8ffd..c6affaf8ce0 100644 --- a/install_template/templates/products/edb-pgbouncer/base.njk +++ b/install_template/templates/products/edb-pgbouncer/base.njk @@ -4,5 +4,5 @@ ```shell zypper -n install {{ packageName }} ``` -Where \ is the version of EDB PgBouncer you are installing. +Where xx is the version of EDB PgBouncer you are installing. {% endblock installCommand %} \ No newline at end of file From fcbea41b7443ba23812e9dd599a7a8cdf601c0e1 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 09:58:08 -0400 Subject: [PATCH 078/180] add pgPool to config.yaml --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 3e55871f5f7..ad8b3a94b5d 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -189,8 +189,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [1.16] - # - name: EDB PgpoolII - # platforms: + - name: EDB PgpoolII + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] @@ -215,18 +215,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 12 + arch: x86_64 + supported versions: [4.3] + - name: SLES 12 + arch: ppc64le + supported versions: [4.3] + - name: SLES 15 + arch: x86_64 + supported versions: [4.3] + - name: SLES 15 + arch: ppc64le + supported versions: [4.3] # - name: EDB Postgres Advanced Server # platforms: # - name: CentOS 7 From 7092134f75201b86898efc51929eea91cd825a2a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 10:12:32 -0400 Subject: [PATCH 079/180] added xx variable to base template for pgPool --- install_template/templates/products/edb-pgpoolii/base.njk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install_template/templates/products/edb-pgpoolii/base.njk b/install_template/templates/products/edb-pgpoolii/base.njk index 59c54cda724..010f6fc0f18 100644 --- a/install_template/templates/products/edb-pgpoolii/base.njk +++ b/install_template/templates/products/edb-pgpoolii/base.njk @@ -1,2 +1,8 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName %}edb-pgpool{{ product.version | replace(".", "") }}{% endset %} +{% set packageName %}edb-pgpool{% endset %} +{% block installCommand %} +```shell +zypper -n install {{ packageName }} +``` +Where xx is the version of EDB PbPool-II you are installing. +{% endblock installCommand %} From 77504808d1aa7120c7c58407d61aaddf62de8bb0 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 10:18:07 -0400 Subject: [PATCH 080/180] added PostGIS to config.yaml --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index ad8b3a94b5d..5370f108b17 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -461,8 +461,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - # - name: PostGIS - # platforms: + - name: PostGIS + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -487,18 +487,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: Postgres Enterprise Manager # platforms: # - name: CentOS 7 From ae9fddda4cd382d621aff7c65988b9532738e47b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 10:20:53 -0400 Subject: [PATCH 081/180] spacing issue on config.yaml --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 5370f108b17..7738703584b 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -461,8 +461,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - - name: PostGIS - platforms: + - name: PostGIS + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -487,18 +487,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: Postgres Enterprise Manager # platforms: # - name: CentOS 7 From 8cf33c31014b031cf7eff516bc4e14ae8c1fa194 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 10:38:14 -0400 Subject: [PATCH 082/180] add xx variable to base template for PostGIS --- install_template/templates/products/postgis/base.njk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install_template/templates/products/postgis/base.njk b/install_template/templates/products/postgis/base.njk index 944d50648fa..04993c3e04f 100644 --- a/install_template/templates/products/postgis/base.njk +++ b/install_template/templates/products/postgis/base.njk @@ -1,2 +1,8 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName %}edb-as{{ product.version | replace(".", "") }}-postgis3{% endset %} +{% set packageName %}edb-as-postgis3{% endset %} +{% block installCommand %} +```shell +zypper -n install {{ packageName }} +``` +Where xx is the version of PostGIS 3 you are installing. +{% endblock installCommand %} From 66d0d58560bbb3266c8468c999cf5d443dafcf0c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 11:16:24 -0400 Subject: [PATCH 083/180] Removed Replication Manager from config.yaml --- install_template/config.yaml | 39 +----------------------------------- 1 file changed, 1 insertion(+), 38 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 7738703584b..fb03013ec71 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -537,44 +537,7 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [7, 8] - # - name: Replication Manager - # platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [7] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [7] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [7] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [7] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [7] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [7] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [7] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [7] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [7] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [7] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [7] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [7] + From 9b7f5c9ae11585317897c1b6845153ed8041f6a3 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 29 Mar 2022 11:22:21 -0400 Subject: [PATCH 084/180] added PEM to config.yaml --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index fb03013ec71..e518fd3378c 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -499,8 +499,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - # - name: Postgres Enterprise Manager - # platforms: + - name: Postgres Enterprise Manager + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [7, 8] @@ -525,18 +525,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [7, 8] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [7, 8] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [7, 8] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [7, 8] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [7, 8] + - name: SLES 12 + arch: x86_64 + supported versions: [8] + - name: SLES 15 + arch: x86_64 + supported versions: [8] + - name: SLES 12 + arch: ppc64le + supported versions: [8] + - name: SLES 15 + arch: ppc64le + supported versions: [8] From 06522505185b227e111f2bbf408ab560bea5c808 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 30 Mar 2022 10:48:57 -0400 Subject: [PATCH 085/180] Added SLES to EPAS --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index e518fd3378c..a7ad414276b 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -227,8 +227,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [4.3] - # - name: EDB Postgres Advanced Server - # platforms: + - name: EDB Postgres Advanced Server + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [10, 11, 12, 13, 14] @@ -259,18 +259,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] - name: EDB*Plus platforms: # - name: CentOS 7 From cc1124deee398904f0899f3607830bb3bfb0a0f3 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 30 Mar 2022 11:05:15 -0400 Subject: [PATCH 086/180] Added xx to package name for EPAS --- .../products/edb-postgres-advanced-server/base.njk | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 8e0c3993020..37ef64a7617 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/base.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/base.njk @@ -1,5 +1,12 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} -{% set packageName %}edb-as{{ product.version | replace(".", "") }}-server{% endset %} +{% set packageName %}edb-as-server{% endset %} +{% block installCommand %} +```shell +zypper -n install {{ packageName }} +``` +Where xx is the version of EDB Postgres Advanced Server you are installing. +{% endblock installCommand %} + {% block postinstall %} ## Connecting to Your Database cluster From 9546aa9c51385e6c243d2411f87ba16c3884da59 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 7 Apr 2022 08:49:20 -0400 Subject: [PATCH 087/180] removed java for SLES from EDB*Plus --- .../templates/products/edb*plus/sles-12.njk | 24 ----------------- .../products/edb*plus/sles-12_ppc64le.njk | 24 ----------------- .../templates/products/edb*plus/sles-15.njk | 26 ------------------- .../products/edb*plus/sles-15_ppc64le.njk | 26 ------------------- 4 files changed, 100 deletions(-) diff --git a/install_template/templates/products/edb*plus/sles-12.njk b/install_template/templates/products/edb*plus/sles-12.njk index 85abd4b73a6..56ca0569218 100644 --- a/install_template/templates/products/edb*plus/sles-12.njk +++ b/install_template/templates/products/edb*plus/sles-12.njk @@ -1,26 +1,2 @@ {% extends "products/edb*plus/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -{% endblock prerequisites %} diff --git a/install_template/templates/products/edb*plus/sles-12_ppc64le.njk b/install_template/templates/products/edb*plus/sles-12_ppc64le.njk index ef2a9911f24..e602925f27d 100644 --- a/install_template/templates/products/edb*plus/sles-12_ppc64le.njk +++ b/install_template/templates/products/edb*plus/sles-12_ppc64le.njk @@ -1,27 +1,3 @@ {% extends "products/edb*plus/base.njk" %} {% set platformBaseTemplate = "sles-12" %} {% set includePPC = true %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-15.njk b/install_template/templates/products/edb*plus/sles-15.njk index 23e6d9ce17e..25b488d5fb3 100644 --- a/install_template/templates/products/edb*plus/sles-15.njk +++ b/install_template/templates/products/edb*plus/sles-15.njk @@ -1,28 +1,2 @@ {% extends "products/edb*plus/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/{{ platform.arch }} - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk - -# Refresh the metadata -zypper refresh -``` -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb*plus/sles-15_ppc64le.njk b/install_template/templates/products/edb*plus/sles-15_ppc64le.njk index bbecc327f77..09807c02057 100644 --- a/install_template/templates/products/edb*plus/sles-15_ppc64le.njk +++ b/install_template/templates/products/edb*plus/sles-15_ppc64le.njk @@ -1,29 +1,3 @@ {% extends "products/edb*plus/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set includePPC = true %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/{{ platform.arch }} - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk - -# Refresh the metadata -zypper refresh -``` -{% endblock prerequisites %} \ No newline at end of file From 62cc0456a895d402c55f03b75a9d4bb4575c6e9c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 7 Apr 2022 08:57:53 -0400 Subject: [PATCH 088/180] REMOVed JAVA from SLES 12 for JDBC --- .../products/edb-jdbc-connector/sles-12.njk | 24 ------------------- .../edb-jdbc-connector/sles-12_ppc64le.njk | 24 ------------------- 2 files changed, 48 deletions(-) diff --git a/install_template/templates/products/edb-jdbc-connector/sles-12.njk b/install_template/templates/products/edb-jdbc-connector/sles-12.njk index 44f60323b25..9e611c35d43 100644 --- a/install_template/templates/products/edb-jdbc-connector/sles-12.njk +++ b/install_template/templates/products/edb-jdbc-connector/sles-12.njk @@ -1,26 +1,2 @@ {% extends "products/edb-jdbc-connector/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk index 44f60323b25..9e611c35d43 100644 --- a/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk +++ b/install_template/templates/products/edb-jdbc-connector/sles-12_ppc64le.njk @@ -1,26 +1,2 @@ {% extends "products/edb-jdbc-connector/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` - -{% endblock prerequisites %} \ No newline at end of file From 3a05ad76f8ad2c3dbfcf59b3831063eedd71f48a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 7 Apr 2022 09:06:11 -0400 Subject: [PATCH 089/180] Removed SLES 12 from MTK --- .../products/migration-toolkit/sles-12.njk | 23 ------------------- .../migration-toolkit/sles-12_ppc64le.njk | 23 ------------------- 2 files changed, 46 deletions(-) diff --git a/install_template/templates/products/migration-toolkit/sles-12.njk b/install_template/templates/products/migration-toolkit/sles-12.njk index f287c925ab7..459e87d293c 100644 --- a/install_template/templates/products/migration-toolkit/sles-12.njk +++ b/install_template/templates/products/migration-toolkit/sles-12.njk @@ -1,25 +1,2 @@ {% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk b/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk index 6e985dc9ec5..b2237251b83 100644 --- a/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk +++ b/install_template/templates/products/migration-toolkit/sles-12_ppc64le.njk @@ -1,26 +1,3 @@ {% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "sles-12" %} {% set includePPC = true %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` -{% endblock prerequisites %} \ No newline at end of file From a8fc857d93e3c547706be8b043eb7a09a2f85835 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 7 Apr 2022 09:54:42 -0400 Subject: [PATCH 090/180] removed Java from SLES 12 on Failover Mgr (x86) and Hadoop (ppc) --- .../products/failover-manager/sles-12.njk | 23 ------------------ .../sles-12_ppc64le.njk | 24 ------------------- 2 files changed, 47 deletions(-) diff --git a/install_template/templates/products/failover-manager/sles-12.njk b/install_template/templates/products/failover-manager/sles-12.njk index 0b030f07446..9f15a8082bd 100644 --- a/install_template/templates/products/failover-manager/sles-12.njk +++ b/install_template/templates/products/failover-manager/sles-12.njk @@ -1,25 +1,2 @@ {% extends "products/failover-manager/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 1.8) for Java based components -zypper -n install java-1_8_0-openjdk -``` -{% endblock prerequisites %} \ No newline at end of file diff --git a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk index d05f22952aa..9e221f2accf 100644 --- a/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk +++ b/install_template/templates/products/hadoop-foreign-data-wrapper/sles-12_ppc64le.njk @@ -1,26 +1,2 @@ {% extends "products/hadoop-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh - -# Install OpenJDK (version 11) for Java based components -zypper -n install java-11-openjdk -``` - -{% endblock prerequisites %} \ No newline at end of file From 42bddaf500411e3dcf9e7e931070049186d5e526 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Mon, 28 Mar 2022 10:31:09 -0700 Subject: [PATCH 091/180] Make postinstall optional --- install_template/templates/platformBase/base.njk | 6 +++++- .../products/mysql-foreign-data-wrapper/sles-15.njk | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index d99a863414f..2cc9c0a2f39 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -7,7 +7,8 @@ To complete an installation: - [Setting up the repository](#setting-up-the-repository) - [Installing the package](#installing-the-package) -- [Performing the initial configuration](#initial-configuration) +{% block postinstallMenu %}- [Performing the initial configuration](#initial-configuration) +{% endblock postinstallMenu %} For each step, you must be logged in as superuser. @@ -25,8 +26,11 @@ Before setting up the repository, you need to register with EDB. To receive cred ## Installing the package {% block installCommand %}{% endblock installCommand %} +{% block postinstallHeader %} ## Initial configuration +{% endblock postinstallHeader %} + {% block postinstall %}{% endblock postinstall %} diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk index 7179bcea3e0..d802629621d 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk @@ -26,4 +26,7 @@ rpm --import /etc/RPM-GPG-KEY-mysql-2022 # Refresh the metadata zypper refresh ``` -{% endblock prerequisites %} \ No newline at end of file +{% endblock prerequisites %} + +{% block postinstallMenu %}{% endblock postinstallMenu %} +{% block postinstallHeader %}{% endblock postinstallHeader %} \ No newline at end of file From 806c30f75790df47550573e04c407d22d9b03c57 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Wed, 30 Mar 2022 10:30:42 -0700 Subject: [PATCH 092/180] Default no postinstall --- install_template/templates/platformBase/base.njk | 8 +------- .../products/mysql-foreign-data-wrapper/sles-15.njk | 3 --- .../products/postgres-enterprise-manager/base.njk | 3 +++ 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 2cc9c0a2f39..61851c93bf0 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -7,8 +7,7 @@ To complete an installation: - [Setting up the repository](#setting-up-the-repository) - [Installing the package](#installing-the-package) -{% block postinstallMenu %}- [Performing the initial configuration](#initial-configuration) -{% endblock postinstallMenu %} +{% block postinstallMenu %}{% endblock postinstallMenu %} For each step, you must be logged in as superuser. @@ -26,11 +25,6 @@ Before setting up the repository, you need to register with EDB. To receive cred ## Installing the package {% block installCommand %}{% endblock installCommand %} -{% block postinstallHeader %} - -## Initial configuration - -{% endblock postinstallHeader %} {% block postinstall %}{% endblock postinstall %} diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk index d802629621d..27a0505cc3c 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/sles-15.njk @@ -27,6 +27,3 @@ rpm --import /etc/RPM-GPG-KEY-mysql-2022 zypper refresh ``` {% endblock prerequisites %} - -{% block postinstallMenu %}{% endblock postinstallMenu %} -{% block postinstallHeader %}{% endblock postinstallHeader %} \ No newline at end of file diff --git a/install_template/templates/products/postgres-enterprise-manager/base.njk b/install_template/templates/products/postgres-enterprise-manager/base.njk index de94314fc55..89b284a3e7e 100644 --- a/install_template/templates/products/postgres-enterprise-manager/base.njk +++ b/install_template/templates/products/postgres-enterprise-manager/base.njk @@ -1,6 +1,9 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-pem{% endset %} +{% block postinstallMenu %}- [Performing the initial configuration](#initial-configuration){% endblock postinstallMenu %} {% block postinstall %} +## Initial configuration + ```shell # You can configure the PEM server using the following command: /usr/edb/pem/bin/configure-pem-server.sh From e0a1a105660143c462fbac98faf2b572e069cc2f Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Apr 2022 10:53:36 -0400 Subject: [PATCH 093/180] first test of conditionalized Initial Configuration --- .../templates/products/failover-manager/sles-15.njk | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/install_template/templates/products/failover-manager/sles-15.njk b/install_template/templates/products/failover-manager/sles-15.njk index a491eff5547..8180ff9fa77 100644 --- a/install_template/templates/products/failover-manager/sles-15.njk +++ b/install_template/templates/products/failover-manager/sles-15.njk @@ -1,2 +1,13 @@ {% extends "products/failover-manager/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-15" %} +{% block postinstallMenu %}{% endblock postinstallMenu %} +{% block postinstall %} +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](08_controlling_efm_service/#controlling-the-failover-manager-service). +{% endblock postinstall %} \ No newline at end of file From ffa11c81a05d57a47abe9ab4847588eaf4a1f963 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Apr 2022 11:25:06 -0400 Subject: [PATCH 094/180] small change to kick off deploy build --- .../templates/products/failover-manager/sles-15.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_template/templates/products/failover-manager/sles-15.njk b/install_template/templates/products/failover-manager/sles-15.njk index 8180ff9fa77..6d5d7cad539 100644 --- a/install_template/templates/products/failover-manager/sles-15.njk +++ b/install_template/templates/products/failover-manager/sles-15.njk @@ -6,7 +6,7 @@ If you are using Failover Manager to monitor a cluster owned by a user other tha After installing on each node of the cluster: -1. Modify the [cluster properties file](04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +1. Modify the [cluster properties file](04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. 2. Modify the [cluster members file](04_configuring_efm/03_cluster_members/#cluster_members) on each node. 3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. 4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](08_controlling_efm_service/#controlling-the-failover-manager-service). From a1d63c66b6b0ed022f8195b6de64034805f6a84e Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Apr 2022 12:37:14 -0400 Subject: [PATCH 095/180] forgot header for third section --- .../templates/products/failover-manager/sles-15.njk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install_template/templates/products/failover-manager/sles-15.njk b/install_template/templates/products/failover-manager/sles-15.njk index 6d5d7cad539..e1d11fc6ad5 100644 --- a/install_template/templates/products/failover-manager/sles-15.njk +++ b/install_template/templates/products/failover-manager/sles-15.njk @@ -2,6 +2,8 @@ {% set platformBaseTemplate = "sles-15" %} {% block postinstallMenu %}{% endblock postinstallMenu %} {% block postinstall %} +## Initial Configuration + If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). After installing on each node of the cluster: From cd52d7fa00489241abd07c13ae56c4c728c87d82 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Apr 2022 12:41:12 -0400 Subject: [PATCH 096/180] adjustments to mini toc entry --- .../templates/products/failover-manager/sles-15.njk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_template/templates/products/failover-manager/sles-15.njk b/install_template/templates/products/failover-manager/sles-15.njk index e1d11fc6ad5..19f9faecd85 100644 --- a/install_template/templates/products/failover-manager/sles-15.njk +++ b/install_template/templates/products/failover-manager/sles-15.njk @@ -1,8 +1,8 @@ {% extends "products/failover-manager/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% block postinstallMenu %}{% endblock postinstallMenu %} +{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} {% block postinstall %} -## Initial Configuration +## Initial configuration If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). From 6746242f944d0cfc16222ccdb6b7c9e4d79f95af Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Apr 2022 12:44:23 -0400 Subject: [PATCH 097/180] moved changes from SLES 15 template to base file for failover mgr --- .../templates/products/failover-manager/base.njk | 15 ++++++++++++++- .../products/failover-manager/sles-15.njk | 13 ------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/templates/products/failover-manager/base.njk b/install_template/templates/products/failover-manager/base.njk index ed7215c54eb..85e4b47a989 100644 --- a/install_template/templates/products/failover-manager/base.njk +++ b/install_template/templates/products/failover-manager/base.njk @@ -5,4 +5,17 @@ zypper -n install {{ packageName }} ``` Where <4x> is the version of Failover Manager you are installing. -{% endblock installCommand %} \ No newline at end of file +{% endblock installCommand %} +{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} +{% block postinstall %} +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +2. Modify the [cluster members file](04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](08_controlling_efm_service/#controlling-the-failover-manager-service). +{% endblock postinstall %} \ No newline at end of file diff --git a/install_template/templates/products/failover-manager/sles-15.njk b/install_template/templates/products/failover-manager/sles-15.njk index 19f9faecd85..15ed86901a3 100644 --- a/install_template/templates/products/failover-manager/sles-15.njk +++ b/install_template/templates/products/failover-manager/sles-15.njk @@ -1,15 +1,2 @@ {% extends "products/failover-manager/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} -{% block postinstall %} -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. -2. Modify the [cluster members file](04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](08_controlling_efm_service/#controlling-the-failover-manager-service). -{% endblock postinstall %} \ No newline at end of file From f75df82712ba0aacd49d8cf159507a4cd912a579 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 8 Apr 2022 09:05:03 -0400 Subject: [PATCH 098/180] added Initial configuration for jdbc --- .../templates/products/edb-jdbc-connector/base.njk | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/install_template/templates/products/edb-jdbc-connector/base.njk b/install_template/templates/products/edb-jdbc-connector/base.njk index d4a8ac8cc12..b5d513b9753 100644 --- a/install_template/templates/products/edb-jdbc-connector/base.njk +++ b/install_template/templates/products/edb-jdbc-connector/base.njk @@ -1,2 +1,13 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-jdbc{% endset %} +{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} +{% block postinstall %} +## Initial configuration + +To make the JDBC driver available to Java, you must either copy the appropriate java `.jar` file for the JDBC version that you are using to your `$java_home/jre/lib/ext` directory or append the location of the `.jar` file to the `CLASSPATH` environment variable. + +Note that if you choose to append the location of the `jar` file to the `CLASSPATH` environment variable, you must include the complete pathname: + + `/usr/edb/jdbc/edb-jdbc18.jar` + +{% endblock postinstall %} \ No newline at end of file From aabebacb8c1ab84a0f41ad0d53b3ae9d2ae4552b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 8 Apr 2022 09:11:46 -0400 Subject: [PATCH 099/180] added initial configuration for EDB*Plus --- .../templates/products/edb*plus/base.njk | 121 ++++++++++++++++++ 1 file changed, 121 insertions(+) diff --git a/install_template/templates/products/edb*plus/base.njk b/install_template/templates/products/edb*plus/base.njk index de4bdfb11ef..382540206f8 100644 --- a/install_template/templates/products/edb*plus/base.njk +++ b/install_template/templates/products/edb*plus/base.njk @@ -1,2 +1,123 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-as{{ product.version | replace(".", "") }}-edbplus{% endset %} +{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} +{% block postinstall %} +## Initial configuration + +## Configuring an RPM Installation + +After performing an RPM installation of EDB\*Plus, you must set the values of environment variables that allow EDB\*Plus to locate your Java installation. Use the following commands to set variable values: + +```text +export JAVA_HOME= +export PATH=/bin:$PATH +``` + +By default, the `pg_hba.conf` file for the RPM installer enforces `IDENT` authentication. Before invoking EDB\*Plus, you must either modify the `pg_hba.conf` file, changing the authentication method to a form other than `IDENT` (and restarting the server), or perform the following steps to ensure that an `IDENT` server is accessible: + +You must confirm that an `identd` server is installed and running. You can use the `yum` package manager to install an `identd` server by invoking the command: + +- On RHEL or CentOS 7: + + ```text + yum -y install xinetd authd + ``` + +- On RHEL/Rocky Linux/AlmaLinux 8: + + ```text + dnf -y install xinetd authd + ``` + +The command should create a file named `/etc/xinetd.d/auth` that contains: + +```text +service auth +{ + disable = yes + socket_type = stream +wait =no +user = ident +cps = 4096 10 +instances = UNLIMITED +server = /usr/sbin/in.authd server_args = -t60 --xerror –os +} +``` + +!!! Note + If the file includes a `-E` argument at the end of the server arguments, please erase `-E`. + +Then, to start the `identd` server, invoke the following commands: + +```text +systemctl enable xinetd +systemctl start xinetd +``` + +Open the `pg_ident.conf` file and create a user mapping: + +```text +# map_name system_username postgres_username + edbas enterprisedb enterprisedb +``` + +Where: + +- The name specified in the `map_name` column is a user-defined name that will identify the mapping in the `pg_hba.conf` file. +- The name specified in the `system_username` column is `enterprisedb`. +- The name specified in the `postgres_username` column is `enterprisedb`. + +Then, open the `pg_hba.conf` file and modify the `IDENT` entries: + +- If you are using an IPv4 local connection, modify the file entry to read: + + `host all all 127.0.0.0/0 ident map=edbas` + +- If you are using an IPv6 local connection, modify the file entry to read: + + `host all all ::1/128 ident map=edbas` + +You must restart the Advanced Server service before invoking EDB\*Plus. For detailed information about controlling the Advanced Server service, see the *EDB Postgres Advanced Server Installation Guide*, available at: + +[https://www.enterprisedb.com/docs](/epas/latest/) + +## Using the Graphical Installer + +Graphical installers for EDB\*Plus are available via StackBuilder Plus; you can access StackBuilder Plus through your Windows or Linux start menu. After opening StackBuilder Plus and selecting the installation for which you wish to install EDB\*Plus, expand the component selection screen tree control to select and download the EDB\*Plus installer. + +![The EDBPlus Welcome window](images/edb_plus_welcome.png) + +
Fig. 1: The EDB*Plus Welcome window
+ +The EDB\*Plus installer welcomes you to the setup wizard, as shown in the figure below. + +![The Installation Directory window](images/installation_directory.png) + +
Fig. 2: The Installation Directory window
+ +Use the `Installation Directory` field to specify the directory in which you wish to install the EDB\*Plus software. Then, click `Next` to continue. + +![The Advanced Server Installation Details window](images/advanced_server_installation_details.png) + +
Fig. 3: The Advanced Server Installation Details window
+ +Use fields on the `EDB Postgres Advanced Server Installation Details` window to identify the location of the Advanced Server host: + +- Use the `Host` field to identify the system on which Advanced Server resides. +- Use the `Port` field to identify the listener port that Advanced Server monitors for client connections. + +Then, click `Next` to continue. + +![The Ready to Install window](images/ready_to_install.png) + +
Fig. 4: The Ready to Install window
+ +The `Ready to Install` window notifies you when the installer has all of the information needed to install EDB\*Plus on your system. Click `Next` to install EDB\*Plus. + +![The installation is complete](images/installation_complete.png) + +
Fig. 5: The installation is complete
+ +The installer notifies you when the setup wizard has completed the EDB\*Plus installation. Click `Finish` to exit the installer. + +{% endblock postinstall %} \ No newline at end of file From 2375ee689b2fb64e959c9cc8e330c5d99728dfcc Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 8 Apr 2022 09:14:01 -0400 Subject: [PATCH 100/180] tweak to initial config for edbplus --- install_template/templates/products/edb*plus/base.njk | 2 -- 1 file changed, 2 deletions(-) diff --git a/install_template/templates/products/edb*plus/base.njk b/install_template/templates/products/edb*plus/base.njk index 382540206f8..e1fb8dd6c2b 100644 --- a/install_template/templates/products/edb*plus/base.njk +++ b/install_template/templates/products/edb*plus/base.njk @@ -4,8 +4,6 @@ {% block postinstall %} ## Initial configuration -## Configuring an RPM Installation - After performing an RPM installation of EDB\*Plus, you must set the values of environment variables that allow EDB\*Plus to locate your Java installation. Use the following commands to set variable values: ```text From 1e3a84504348c35c7e1a73c03ad2aee450b910b3 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 8 Apr 2022 09:23:26 -0400 Subject: [PATCH 101/180] Update base.njk Another tweak to edbplus --- .../templates/products/edb*plus/base.njk | 39 ------------------- 1 file changed, 39 deletions(-) diff --git a/install_template/templates/products/edb*plus/base.njk b/install_template/templates/products/edb*plus/base.njk index e1fb8dd6c2b..f47939b6f13 100644 --- a/install_template/templates/products/edb*plus/base.njk +++ b/install_template/templates/products/edb*plus/base.njk @@ -79,43 +79,4 @@ You must restart the Advanced Server service before invoking EDB\*Plus. For deta [https://www.enterprisedb.com/docs](/epas/latest/) -## Using the Graphical Installer - -Graphical installers for EDB\*Plus are available via StackBuilder Plus; you can access StackBuilder Plus through your Windows or Linux start menu. After opening StackBuilder Plus and selecting the installation for which you wish to install EDB\*Plus, expand the component selection screen tree control to select and download the EDB\*Plus installer. - -![The EDBPlus Welcome window](images/edb_plus_welcome.png) - -
Fig. 1: The EDB*Plus Welcome window
- -The EDB\*Plus installer welcomes you to the setup wizard, as shown in the figure below. - -![The Installation Directory window](images/installation_directory.png) - -
Fig. 2: The Installation Directory window
- -Use the `Installation Directory` field to specify the directory in which you wish to install the EDB\*Plus software. Then, click `Next` to continue. - -![The Advanced Server Installation Details window](images/advanced_server_installation_details.png) - -
Fig. 3: The Advanced Server Installation Details window
- -Use fields on the `EDB Postgres Advanced Server Installation Details` window to identify the location of the Advanced Server host: - -- Use the `Host` field to identify the system on which Advanced Server resides. -- Use the `Port` field to identify the listener port that Advanced Server monitors for client connections. - -Then, click `Next` to continue. - -![The Ready to Install window](images/ready_to_install.png) - -
Fig. 4: The Ready to Install window
- -The `Ready to Install` window notifies you when the installer has all of the information needed to install EDB\*Plus on your system. Click `Next` to install EDB\*Plus. - -![The installation is complete](images/installation_complete.png) - -
Fig. 5: The installation is complete
- -The installer notifies you when the setup wizard has completed the EDB\*Plus installation. Click `Finish` to exit the installer. - {% endblock postinstall %} \ No newline at end of file From f65b21c40ff2185642be60e32409051e219b5b61 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 13 Apr 2022 10:03:26 -0400 Subject: [PATCH 102/180] commented out all products except SLES on Failover MGR --- install_template/config.yaml | 364 +++++++++++++++++------------------ 1 file changed, 182 insertions(+), 182 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index a7ad414276b..c733ad0bd24 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,6 +1,6 @@ products: - - name: EDB JDBC Connector - platforms: + # - name: EDB JDBC Connector + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [42.x.x] @@ -25,20 +25,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [42.x.x] - - name: SLES 12 - arch: x86_64 - supported versions: [42.x.x] - - name: SLES 12 - arch: ppc64le - supported versions: [42.x.x] - - name: SLES 15 - arch: x86_64 - supported versions: [42.x.x] - - name: SLES 15 - arch: ppc64le - supported versions: [42.x.x] - - name: Migration Toolkit - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: Migration Toolkit + # platforms: # - name: RHEL 8 or OL 8 # arch: x86_64 # supported versions: [55] @@ -51,12 +51,12 @@ products: # - name: CentOS 7 # arch: x86_64 # supported versions: [55] - - name: SLES 15 - arch: x86_64 - supported versions: [55] - - name: SLES 12 - arch: ppc64le - supported versions: [55] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [55] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [55] # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [55] @@ -69,14 +69,14 @@ products: # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [55] - - name: SLES 15 - arch: ppc64le - supported versions: [55] - - name: SLES 12 - arch: x86_64 - supported versions: [55] - - name: EDB OCI Connector - platforms: + # - name: SLES 15 + # arch: ppc64le + # supported versions: [55] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [55] + # - name: EDB OCI Connector + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [14.1.0.1] @@ -101,20 +101,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [14.1.0.1] - - name: SLES 12 - arch: x86_64 - supported versions: [14.1.0.1] - - name: SLES 12 - arch: ppc64le - supported versions: [14.1.0.1] - - name: SLES 15 - arch: x86_64 - supported versions: [14.1.0.1] - - name: SLES 15 - arch: ppc64le - supported versions: [14.1.0.1] - - name: EDB ODBC Connector - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: EDB ODBC Connector + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [13.1.0.2] @@ -139,20 +139,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [13.1.0.2] - - name: SLES 12 - arch: x86_64 - supported versions: [13.1.0.2] - - name: SLES 12 - arch: ppc64le - supported versions: [13.1.0.2] - - name: SLES 15 - arch: x86_64 - supported versions: [13.1.0.2] - - name: SLES 15 - arch: ppc64le - supported versions: [13.1.0.2] - - name: EDB pgBouncer - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [13.1.0.2] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [13.1.0.2] + # - name: EDB pgBouncer + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [1.14, 1.15, 1.16] @@ -177,20 +177,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [1.14, 1.15, 1.16] - - name: SLES 12 - arch: x86_64 - supported versions: [1.16] - - name: SLES 12 - arch: ppc64le - supported versions: [1.16] - - name: SLES 15 - arch: x86_64 - supported versions: [1.16] - - name: SLES 15 - arch: ppc64le - supported versions: [1.16] - - name: EDB PgpoolII - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [1.16] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [1.16] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [1.16] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [1.16] + # - name: EDB PgpoolII + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] @@ -215,20 +215,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] - - name: SLES 12 - arch: x86_64 - supported versions: [4.3] - - name: SLES 12 - arch: ppc64le - supported versions: [4.3] - - name: SLES 15 - arch: x86_64 - supported versions: [4.3] - - name: SLES 15 - arch: ppc64le - supported versions: [4.3] - - name: EDB Postgres Advanced Server - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [4.3] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [4.3] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [4.3] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [4.3] + # - name: EDB Postgres Advanced Server + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [10, 11, 12, 13, 14] @@ -259,20 +259,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] - - name: EDB*Plus - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] + # - name: EDB*Plus + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] @@ -297,18 +297,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] - name: Failover Manager platforms: # - name: CentOS 7 @@ -347,8 +347,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [4.4] - - name: Hadoop Foreign Data Wrapper - platforms: + # - name: Hadoop Foreign Data Wrapper + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [14] @@ -373,20 +373,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] - - name: MongoDB Foreign Data Wrapper - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] + # - name: MongoDB Foreign Data Wrapper + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -411,20 +411,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] - - name: MySQL Foreign Data Wrapper - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] + # - name: MySQL Foreign Data Wrapper + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -449,20 +449,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] - - name: PostGIS - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] + # - name: PostGIS + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -487,20 +487,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] - - name: Postgres Enterprise Manager - platforms: + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] + # - name: Postgres Enterprise Manager + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [7, 8] @@ -525,18 +525,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [7, 8] - - name: SLES 12 - arch: x86_64 - supported versions: [8] - - name: SLES 15 - arch: x86_64 - supported versions: [8] - - name: SLES 12 - arch: ppc64le - supported versions: [8] - - name: SLES 15 - arch: ppc64le - supported versions: [8] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [8] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [8] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [8] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [8] From 9bcf33ebe9e0c99606658e3b0961b51bc80667e9 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 13 Apr 2022 10:41:45 -0400 Subject: [PATCH 103/180] added tick marks and changed path for links --- .../templates/products/failover-manager/base.njk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install_template/templates/products/failover-manager/base.njk b/install_template/templates/products/failover-manager/base.njk index 85e4b47a989..b5e2f04badb 100644 --- a/install_template/templates/products/failover-manager/base.njk +++ b/install_template/templates/products/failover-manager/base.njk @@ -4,18 +4,18 @@ ```shell zypper -n install {{ packageName }} ``` -Where <4x> is the version of Failover Manager you are installing. +Where `<4x>` is the version of Failover Manager you are installing. {% endblock installCommand %} {% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} {% block postinstall %} ## Initial configuration -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). After installing on each node of the cluster: -1. Modify the [cluster properties file](04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. -2. Modify the [cluster members file](04_configuring_efm/03_cluster_members/#cluster_members) on each node. +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. 3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](08_controlling_efm_service/#controlling-the-failover-manager-service). +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). {% endblock postinstall %} \ No newline at end of file From 79b53ce4a138dea25a4d76cbff3af492560b8793 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 13 Apr 2022 11:10:02 -0400 Subject: [PATCH 104/180] Four generated files for the SLES topics for EFM --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 60 ++++++++++++++++++ .../failover-manager_4.4_sles-12_x86_64.mdx | 60 ++++++++++++++++++ .../failover-manager_4.4_sles-15_ppc64le.mdx | 63 +++++++++++++++++++ .../failover-manager_4.4_sles-15_x86_64.mdx | 63 +++++++++++++++++++ 4 files changed, 246 insertions(+) create mode 100644 install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..d2787f18ca2 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -0,0 +1,60 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Failover Manager 4.4 on SLES 12 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..e38e5097c6f --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -0,0 +1,60 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Failover Manager 4.4 on SLES 12 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..00a0f50e1b1 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -0,0 +1,63 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Failover Manager 4.4 on SLES 15 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..753a9da8c76 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -0,0 +1,63 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Failover Manager 4.4 on SLES 15 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From 39681d5cfb3d675958a49e59c7283d4ac0e1ce6c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 14 Apr 2022 10:17:39 -0400 Subject: [PATCH 105/180] various edits from Dee Dee and Nidhi --- .../templates/platformBase/base.njk | 2 +- .../templates/platformBase/sles-12.njk | 19 +++++++++++++++---- .../products/failover-manager/base.njk | 4 ++-- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 61851c93bf0..dea27e7bcb1 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -1,6 +1,6 @@ --- navTitle: {{ platform.name }} on {{ platform.arch }} -title: Installing {{ product.name }} {{ product.version }} on {{ platform.name }} {{ platform.arch }} +title: Installing {{ product.name }} on {{ platform.name }} {{ platform.arch }} --- To complete an installation: diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 58fc3c85f38..1c30d76ce71 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -6,12 +6,23 @@ Setting up the repository is a one time task. If you have already set up your re # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories zypper install SUSEConnect -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories +SUSEConnect -r $REGISTRATION_CODE -e $EMAIL + +# Alternatively, remove the printf lines above and +# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your +# registration information in the previous command + +# Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} diff --git a/install_template/templates/products/failover-manager/base.njk b/install_template/templates/products/failover-manager/base.njk index b5e2f04badb..928a7726d4a 100644 --- a/install_template/templates/products/failover-manager/base.njk +++ b/install_template/templates/products/failover-manager/base.njk @@ -4,7 +4,7 @@ ```shell zypper -n install {{ packageName }} ``` -Where `<4x>` is the version of Failover Manager you are installing. +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. {% endblock installCommand %} {% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} {% block postinstall %} @@ -14,7 +14,7 @@ If you are using Failover Manager to monitor a cluster owned by a user other tha After installing on each node of the cluster: -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. 2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. 3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. 4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From 1dda2659a6aa73f2c84b6dae01beaa70134039d0 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 14 Apr 2022 10:26:22 -0400 Subject: [PATCH 106/180] added SUSE prefix --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 25 +++++++++++++------ .../failover-manager_4.4_sles-12_x86_64.mdx | 25 +++++++++++++------ .../failover-manager_4.4_sles-15_ppc64le.mdx | 6 ++--- .../failover-manager_4.4_sles-15_x86_64.mdx | 6 ++--- .../templates/platformBase/sles-12.njk | 2 +- 5 files changed, 43 insertions(+), 21 deletions(-) diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index d2787f18ca2..835e23c3939 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 12 on ppc64le -title: Installing Failover Manager 4.4 on SLES 12 ppc64le +title: Installing Failover Manager on SLES 12 ppc64le --- To complete an installation: @@ -27,12 +27,23 @@ Setting up the repository is a one time task. If you have already set up your re # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories zypper install SUSEConnect -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories +SUSEConnect -r $REGISTRATION_CODE -e $EMAIL + +# Alternatively, remove the printf lines above and +# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your +# registration information in the previous command + +# Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/ppc64le SUSEConnect -p sle-sdk/12.5/ppc64le @@ -46,7 +57,7 @@ zypper refresh zypper -n install edb-efm<4x> ``` -Where `<4x>` is the version of Failover Manager you are installing. +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. ## Initial configuration @@ -54,7 +65,7 @@ If you are using Failover Manager to monitor a cluster owned by a user other tha After installing on each node of the cluster: -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. 2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. 3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. 4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index e38e5097c6f..7324833b9f9 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 12 on x86_64 -title: Installing Failover Manager 4.4 on SLES 12 x86_64 +title: Installing Failover Manager on SLES 12 x86_64 --- To complete an installation: @@ -27,12 +27,23 @@ Setting up the repository is a one time task. If you have already set up your re # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories zypper install SUSEConnect -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories +SUSEConnect -r $REGISTRATION_CODE -e $EMAIL + +# Alternatively, remove the printf lines above and +# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your +# registration information in the previous command + +# Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/x86_64 SUSEConnect -p sle-sdk/12.5/x86_64 @@ -46,7 +57,7 @@ zypper refresh zypper -n install edb-efm<4x> ``` -Where `<4x>` is the version of Failover Manager you are installing. +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. ## Initial configuration @@ -54,7 +65,7 @@ If you are using Failover Manager to monitor a cluster owned by a user other tha After installing on each node of the cluster: -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. 2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. 3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. 4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index 00a0f50e1b1..b963810634a 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 15 on ppc64le -title: Installing Failover Manager 4.4 on SLES 15 ppc64le +title: Installing Failover Manager on SLES 15 ppc64le --- To complete an installation: @@ -49,7 +49,7 @@ zypper refresh zypper -n install edb-efm<4x> ``` -Where `<4x>` is the version of Failover Manager you are installing. +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. ## Initial configuration @@ -57,7 +57,7 @@ If you are using Failover Manager to monitor a cluster owned by a user other tha After installing on each node of the cluster: -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. 2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. 3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. 4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index 753a9da8c76..8b649ed8c3b 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 15 on x86_64 -title: Installing Failover Manager 4.4 on SLES 15 x86_64 +title: Installing Failover Manager on SLES 15 x86_64 --- To complete an installation: @@ -49,7 +49,7 @@ zypper refresh zypper -n install edb-efm<4x> ``` -Where `<4x>` is the version of Failover Manager you are installing. +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. ## Initial configuration @@ -57,7 +57,7 @@ If you are using Failover Manager to monitor a cluster owned by a user other tha After installing on each node of the cluster: -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node.. +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. 2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. 3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. 4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 1c30d76ce71..e064a5cf65f 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -16,7 +16,7 @@ printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL # Register the host with SUSE using your stored information, # which allows access to SUSE repositories -SUSEConnect -r $REGISTRATION_CODE -e $EMAIL +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL # Alternatively, remove the printf lines above and # replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your From c239958d0e42f15642fa7a185fb5e6c7fe13d84e Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 14 Apr 2022 10:29:09 -0400 Subject: [PATCH 107/180] Generated revised SLES files for EFM --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 2 +- .../failover-manager_4.4_sles-12_x86_64.mdx | 2 +- .../failover-manager_4.4_sles-12_ppc64le.mdx | 71 +++++++++++++++++++ .../failover-manager_4.4_sles-12_x86_64.mdx | 71 +++++++++++++++++++ .../failover-manager_4.4_sles-15_ppc64le.mdx | 63 ++++++++++++++++ .../failover-manager_4.4_sles-15_x86_64.mdx | 63 ++++++++++++++++ 6 files changed, 270 insertions(+), 2 deletions(-) create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index 835e23c3939..eef775aeb98 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -37,7 +37,7 @@ printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL # Register the host with SUSE using your stored information, # which allows access to SUSE repositories -SUSEConnect -r $REGISTRATION_CODE -e $EMAIL +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL # Alternatively, remove the printf lines above and # replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index 7324833b9f9..b7601e5c874 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -37,7 +37,7 @@ printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL # Register the host with SUSE using your stored information, # which allows access to SUSE repositories -SUSEConnect -r $REGISTRATION_CODE -e $EMAIL +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL # Alternatively, remove the printf lines above and # replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..eef775aeb98 --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx @@ -0,0 +1,71 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Failover Manager on SLES 12 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Alternatively, remove the printf lines above and +# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your +# registration information in the previous command + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..b7601e5c874 --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx @@ -0,0 +1,71 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Failover Manager on SLES 12 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Alternatively, remove the printf lines above and +# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your +# registration information in the previous command + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..b963810634a --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx @@ -0,0 +1,63 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Failover Manager on SLES 15 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..8b649ed8c3b --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx @@ -0,0 +1,63 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Failover Manager on SLES 15 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From 45f9ea60b406ea7daa9656682f22096246eb5321 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 18 Apr 2022 11:05:06 -0400 Subject: [PATCH 108/180] revised wording for interactive commands --- .../templates/platformBase/sles-12.njk | 15 +++++++++------ .../templates/platformBase/sles-15.njk | 18 ++++++++++++++---- 2 files changed, 23 insertions(+), 10 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index e064a5cf65f..63624dc2f72 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -10,18 +10,21 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The `printf` commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# with your registration information. + # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL -# Alternatively, remove the printf lines above and -# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your -# registration information in the previous command - # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index fad5c344170..890d3ee893a 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -10,10 +10,20 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The `printf` commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# with your registration information. + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/{{ platform.arch }} From 1f47deb406a23536ca076c5f76738132526cadef Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 18 Apr 2022 11:10:24 -0400 Subject: [PATCH 109/180] removed old initial config file and added redirect --- product_docs/docs/efm/4/03_installing_efm/index.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/product_docs/docs/efm/4/03_installing_efm/index.mdx b/product_docs/docs/efm/4/03_installing_efm/index.mdx index cd8b474a062..7c33760940f 100644 --- a/product_docs/docs/efm/4/03_installing_efm/index.mdx +++ b/product_docs/docs/efm/4/03_installing_efm/index.mdx @@ -3,6 +3,7 @@ title: "Installing Failover Manager on Linux" navTitle: "Installing on Linux" redirects: - ../efm_user/03_installing_efm + - 13_initial_config.mdx legacyRedirectsGenerated: # This list is generated by a script. If you need add entries, use the `legacyRedirects` key. - "/edb-docs/d/edb-postgres-failover-manager/user-guides/user-guide/4.0/installing_efm.html" From 760f7ac8be39b422999132e3f902f0e3aab89b37 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 18 Apr 2022 11:16:12 -0400 Subject: [PATCH 110/180] removed tick marks in comments because they don't do anything --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 13 ++-- .../failover-manager_4.4_sles-12_x86_64.mdx | 13 ++-- .../failover-manager_4.4_sles-15_ppc64le.mdx | 18 +++-- .../failover-manager_4.4_sles-15_x86_64.mdx | 18 +++-- .../templates/platformBase/sles-12.njk | 6 +- .../templates/platformBase/sles-15.njk | 6 +- .../failover-manager_4.4_sles-12_ppc64le.mdx | 71 ------------------- .../failover-manager_4.4_sles-12_x86_64.mdx | 71 ------------------- .../failover-manager_4.4_sles-15_ppc64le.mdx | 63 ---------------- .../failover-manager_4.4_sles-15_x86_64.mdx | 63 ---------------- 10 files changed, 50 insertions(+), 292 deletions(-) delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index eef775aeb98..cdf49f1ce46 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -31,18 +31,21 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The `printf` commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# with your registration information. + # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL # Register the host with SUSE using your stored information, -# which allows access to SUSE repositories +# which allows access to SUSE repositories. SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL -# Alternatively, remove the printf lines above and -# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your -# registration information in the previous command - # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/ppc64le SUSEConnect -p sle-sdk/12.5/ppc64le diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index b7601e5c874..d672b35e130 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -31,18 +31,21 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The `printf` commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# with your registration information. + # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL # Register the host with SUSE using your stored information, -# which allows access to SUSE repositories +# which allows access to SUSE repositories. SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL -# Alternatively, remove the printf lines above and -# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your -# registration information in the previous command - # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/x86_64 SUSEConnect -p sle-sdk/12.5/x86_64 diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index b963810634a..497e0268167 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -31,10 +31,20 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The `printf` commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# with your registration information. + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/ppc64le diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index 8b649ed8c3b..a939a128991 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -31,10 +31,20 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The `printf` commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# with your registration information. + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/x86_64 diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 63624dc2f72..b0cf19d15af 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -11,10 +11,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter +# them into a terminal window. The printf commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL # with your registration information. # Store your SUSE registration information diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 890d3ee893a..2e19554d3ab 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -11,10 +11,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter +# them into a terminal window. The printf commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL # with your registration information. # Store your SUSE registration information diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx deleted file mode 100644 index eef775aeb98..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,71 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Failover Manager on SLES 12 ppc64le ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Alternatively, remove the printf lines above and -# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your -# registration information in the previous command - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx deleted file mode 100644 index b7601e5c874..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx +++ /dev/null @@ -1,71 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Failover Manager on SLES 12 x86_64 ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Alternatively, remove the printf lines above and -# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your -# registration information in the previous command - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx deleted file mode 100644 index b963810634a..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,63 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Failover Manager on SLES 15 ppc64le ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx deleted file mode 100644 index 8b649ed8c3b..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx +++ /dev/null @@ -1,63 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Failover Manager on SLES 15 x86_64 ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From 34e279d29e7d318730c5662abd10c7e3e9521075 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 18 Apr 2022 11:19:39 -0400 Subject: [PATCH 111/180] Added rendered files to EFM for show and tell purposes --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 6 +- .../failover-manager_4.4_sles-12_x86_64.mdx | 6 +- .../failover-manager_4.4_sles-15_ppc64le.mdx | 6 +- .../failover-manager_4.4_sles-15_x86_64.mdx | 6 +- .../failover-manager_4.4_sles-12_ppc64le.mdx | 74 +++++++++++++++++++ .../failover-manager_4.4_sles-12_x86_64.mdx | 74 +++++++++++++++++++ .../failover-manager_4.4_sles-15_ppc64le.mdx | 73 ++++++++++++++++++ .../failover-manager_4.4_sles-15_x86_64.mdx | 73 ++++++++++++++++++ 8 files changed, 306 insertions(+), 12 deletions(-) create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index cdf49f1ce46..c3ad5919803 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -32,10 +32,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter +# them into a terminal window. The printf commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL # with your registration information. # Store your SUSE registration information diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index d672b35e130..3d23e62b99d 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -32,10 +32,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter +# them into a terminal window. The printf commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL # with your registration information. # Store your SUSE registration information diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index 497e0268167..8aa0157355c 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -32,10 +32,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter +# them into a terminal window. The printf commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL # with your registration information. # Store your SUSE registration information diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index a939a128991..bf1d5deb7ba 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -32,10 +32,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter +# them into a terminal window. The printf commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL # with your registration information. # Store your SUSE registration information diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..c3ad5919803 --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx @@ -0,0 +1,74 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Failover Manager on SLES 12 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The printf commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# with your registration information. + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..3d23e62b99d --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx @@ -0,0 +1,74 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Failover Manager on SLES 12 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The printf commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# with your registration information. + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..8aa0157355c --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx @@ -0,0 +1,73 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Failover Manager on SLES 15 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The printf commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# with your registration information. + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..bf1d5deb7ba --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx @@ -0,0 +1,73 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Failover Manager on SLES 15 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The printf commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# with your registration information. + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From de10f159d7a6e82dad4db1ffec355942c3ed5932 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Mon, 18 Apr 2022 14:20:20 -0400 Subject: [PATCH 112/180] made printf explanation into a note --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx index c3ad5919803..27f93b16cec 100644 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx @@ -22,6 +22,10 @@ Before setting up the repository, you need to register with EDB. To receive cred Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +!!!note + The following set of commands are designed to let you copy and paste them into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + + ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -31,13 +35,6 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL From 299c4c804c0512bc13377318db69065459e7fa6a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 19 Apr 2022 08:56:43 -0400 Subject: [PATCH 113/180] revised approach to note about code block --- .../templates/platformBase/sles-12.njk | 11 +-- .../templates/platformBase/sles-15.njk | 11 +-- .../failover-manager_4.4_sles-12_ppc64le.mdx | 71 ------------------ .../failover-manager_4.4_sles-12_x86_64.mdx | 74 ------------------- .../failover-manager_4.4_sles-15_ppc64le.mdx | 73 ------------------ .../failover-manager_4.4_sles-15_x86_64.mdx | 73 ------------------ 6 files changed, 8 insertions(+), 305 deletions(-) delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index b0cf19d15af..0ec82c41f02 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,6 +1,10 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note + The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -10,13 +14,6 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 2e19554d3ab..e5e742f73f6 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,6 +1,10 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note + The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -10,13 +14,6 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx deleted file mode 100644 index 27f93b16cec..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,71 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Failover Manager on SLES 12 ppc64le ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -!!!note - The following set of commands are designed to let you copy and paste them into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. - - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx deleted file mode 100644 index 3d23e62b99d..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx +++ /dev/null @@ -1,74 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Failover Manager on SLES 12 x86_64 ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx deleted file mode 100644 index 8aa0157355c..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,73 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Failover Manager on SLES 15 ppc64le ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx deleted file mode 100644 index bf1d5deb7ba..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx +++ /dev/null @@ -1,73 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Failover Manager on SLES 15 x86_64 ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From 9e6a3326969278fe420427b1fec39a995bc80d1a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 19 Apr 2022 09:05:31 -0400 Subject: [PATCH 114/180] closed marked for note --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 10 +-- .../failover-manager_4.4_sles-12_x86_64.mdx | 10 +-- .../failover-manager_4.4_sles-15_ppc64le.mdx | 10 +-- .../failover-manager_4.4_sles-15_x86_64.mdx | 10 +-- .../templates/platformBase/sles-12.njk | 1 + .../templates/platformBase/sles-15.njk | 1 + .../failover-manager_4.4_sles-12_ppc64le.mdx | 71 +++++++++++++++++++ .../failover-manager_4.4_sles-12_x86_64.mdx | 70 ++++++++++++++++++ .../failover-manager_4.4_sles-15_ppc64le.mdx | 69 ++++++++++++++++++ .../failover-manager_4.4_sles-15_x86_64.mdx | 69 ++++++++++++++++++ 10 files changed, 293 insertions(+), 28 deletions(-) create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx create mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index c3ad5919803..e7178db9730 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -22,6 +22,9 @@ Before setting up the repository, you need to register with EDB. To receive cred Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -31,13 +34,6 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index 3d23e62b99d..42b28562311 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -22,6 +22,9 @@ Before setting up the repository, you need to register with EDB. To receive cred Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -31,13 +34,6 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index 8aa0157355c..c82e17c2250 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -22,6 +22,9 @@ Before setting up the repository, you need to register with EDB. To receive cred Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -31,13 +34,6 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index bf1d5deb7ba..17f28d18b06 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -22,6 +22,9 @@ Before setting up the repository, you need to register with EDB. To receive cred Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -31,13 +34,6 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 0ec82c41f02..f3360d1d1e3 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -4,6 +4,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index e5e742f73f6..4c2fdcc7c8f 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -4,6 +4,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..2fc594789e7 --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx @@ -0,0 +1,71 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Failover Manager on SLES 12 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..42b28562311 --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx @@ -0,0 +1,70 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Failover Manager on SLES 12 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..c82e17c2250 --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx @@ -0,0 +1,69 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Failover Manager on SLES 15 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..17f28d18b06 --- /dev/null +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx @@ -0,0 +1,69 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Failover Manager on SLES 15 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) +- [Initial configuration](#initial-configuration) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From 4f8406001cea27afdc9edc8af20555516d971f2b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 19 Apr 2022 09:11:45 -0400 Subject: [PATCH 115/180] Leaving example topics in place But we have to remove them later!! --- .../renders/failover-manager_4.4_sles-12_ppc64le.mdx | 1 + install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx | 1 + .../renders/failover-manager_4.4_sles-15_ppc64le.mdx | 1 + install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx | 1 + .../4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx | 1 + .../4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx | 1 + .../4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx | 1 + 7 files changed, 7 insertions(+) diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index e7178db9730..2fc594789e7 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -24,6 +24,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index 42b28562311..6470fd34f8c 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -24,6 +24,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index c82e17c2250..ad993c87b3a 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -24,6 +24,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index 17f28d18b06..459e266103f 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -24,6 +24,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx index 42b28562311..6470fd34f8c 100644 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx @@ -24,6 +24,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx index c82e17c2250..ad993c87b3a 100644 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx @@ -24,6 +24,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx index 17f28d18b06..459e266103f 100644 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx @@ -24,6 +24,7 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! ```shell # Install the repository configuration and enter your EDB repository From c427f32a3ca17b237828d6099a4d255aae923f04 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 19 Apr 2022 10:06:23 -0400 Subject: [PATCH 116/180] added SLES for MTK --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index c733ad0bd24..2c22cfbbeda 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -37,8 +37,8 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [42.x.x] - # - name: Migration Toolkit - # platforms: + - name: Migration Toolkit + platforms: # - name: RHEL 8 or OL 8 # arch: x86_64 # supported versions: [55] @@ -51,12 +51,12 @@ products: # - name: CentOS 7 # arch: x86_64 # supported versions: [55] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [55] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [55] + - name: SLES 15 + arch: x86_64 + supported versions: [55] + - name: SLES 12 + arch: ppc64le + supported versions: [55] # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [55] @@ -69,12 +69,12 @@ products: # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [55] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [55] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [55] + - name: SLES 15 + arch: ppc64le + supported versions: [55] + - name: SLES 12 + arch: x86_64 + supported versions: [55] # - name: EDB OCI Connector # platforms: # - name: CentOS 7 From 23a574a7383922f0abd6707dcb2bcfdbdc66841d Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 19 Apr 2022 10:21:58 -0400 Subject: [PATCH 117/180] added Initial config info for MTK --- .../migration-toolkit_55_sles-12_ppc64le.mdx | 57 +++++++++++++++++++ .../migration-toolkit_55_sles-12_x86_64.mdx | 57 +++++++++++++++++++ .../migration-toolkit_55_sles-15_ppc64le.mdx | 56 ++++++++++++++++++ .../migration-toolkit_55_sles-15_x86_64.mdx | 56 ++++++++++++++++++ .../products/migration-toolkit/base.njk | 7 +++ 5 files changed, 233 insertions(+) create mode 100644 install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx create mode 100644 install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx create mode 100644 install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx create mode 100644 install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx diff --git a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..02c16ab57e3 --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx @@ -0,0 +1,57 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Migration Toolkit on SLES 12 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-migrationtoolkit +``` diff --git a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx new file mode 100644 index 00000000000..22aaacf74d2 --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx @@ -0,0 +1,57 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Migration Toolkit on SLES 12 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-migrationtoolkit +``` diff --git a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..6e828b57dcf --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx @@ -0,0 +1,56 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Migration Toolkit on SLES 15 ppc64le +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-migrationtoolkit +``` diff --git a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx new file mode 100644 index 00000000000..c8cacf4a479 --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx @@ -0,0 +1,56 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Migration Toolkit on SLES 15 x86_64 +--- + +To complete an installation: + +- [Setting up the repository](#setting-up-the-repository) +- [Installing the package](#installing-the-package) + +For each step, you must be logged in as superuser. + +```shell +# To log in as a superuser: +sudo su - +``` + +Before setting up the repository, you need to 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 + +Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. + +!!! Note +The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. +!!! + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Store your SUSE registration information +printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE +printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL + +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories. +SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Installing the package + +```shell +zypper -n install edb-migrationtoolkit +``` diff --git a/install_template/templates/products/migration-toolkit/base.njk b/install_template/templates/products/migration-toolkit/base.njk index fddc92f9d4a..47545b9dfa4 100644 --- a/install_template/templates/products/migration-toolkit/base.njk +++ b/install_template/templates/products/migration-toolkit/base.njk @@ -1,2 +1,9 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-migrationtoolkit{% endset %} +{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} +{% block postinstall %} +## Initial configuration +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. +{% endblock postinstall %} \ No newline at end of file From c2cb08b54f5ddf84628d9d288b565ce9c2195098 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Tue, 19 Apr 2022 15:12:01 -0400 Subject: [PATCH 118/180] changed intro, switched to imperatives for procedure titles --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx index 2fc594789e7..5126c1a8b29 100644 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx @@ -3,24 +3,16 @@ navTitle: SLES 12 on ppc64le title: Installing Failover Manager on SLES 12 ppc64le --- -To complete an installation: +Before you begin the installation process, log in as superuser. + ```shell + # To log in as a superuser: + sudo su - + ``` -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) -For each step, you must be logged in as superuser. +## Set up the repository -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +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 need to register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -51,7 +43,7 @@ SUSEConnect -p sle-sdk/12.5/ppc64le zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-efm<4x> From fa149b08d0a6fc429a0e9a76ca93e27771fbe066 Mon Sep 17 00:00:00 2001 From: Dee Dee Rothery <83650384+drothery-edb@users.noreply.github.com> Date: Tue, 19 Apr 2022 19:50:28 -0400 Subject: [PATCH 119/180] Update product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx --- .../03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx index 5126c1a8b29..b54ced064a8 100644 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx @@ -12,7 +12,7 @@ Before you begin the installation process, log in as superuser. ## 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 need to 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 first need to register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. From 6c2dbbb8f9503382e341479314d9f042d02cc650 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:06:24 -0400 Subject: [PATCH 120/180] Backing out this change --- install_template/templates/platformBase/sles-12.njk | 1 - install_template/templates/platformBase/sles-15.njk | 1 - 2 files changed, 2 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index f3360d1d1e3..0ec82c41f02 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -4,7 +4,6 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! ```shell # Install the repository configuration and enter your EDB repository diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 4c2fdcc7c8f..e5e742f73f6 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -4,7 +4,6 @@ Setting up the repository is a one time task. If you have already set up your re !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! ```shell # Install the repository configuration and enter your EDB repository From 5bff80e8a38190090d87ebb8421087b4f007826b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:07:34 -0400 Subject: [PATCH 121/180] Backing out note --- install_template/templates/platformBase/sles-12.njk | 11 +++++++---- install_template/templates/platformBase/sles-15.njk | 11 +++++++---- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 0ec82c41f02..b0cf19d15af 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,10 +1,6 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -!!! Note - The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -14,6 +10,13 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The printf commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# with your registration information. + # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index e5e742f73f6..2e19554d3ab 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,10 +1,6 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -!!! Note - The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -14,6 +10,13 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect +# The following set of commands are designed to let you copy and paste +# them into a terminal window. The printf commands prompt you to enter +# registration information interactively. Alternatively, for a +# non-interactive approach, you can remove the printf commands +# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# with your registration information. + # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL From 4347597f7c64e0901a072ef393c89da8f6c5f45a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:08:54 -0400 Subject: [PATCH 122/180] more backing out of printf --- install_template/templates/platformBase/sles-12.njk | 6 +++--- install_template/templates/platformBase/sles-15.njk | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index b0cf19d15af..63624dc2f72 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -11,10 +11,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter +# them into a terminal window. The `printf` commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` # with your registration information. # Store your SUSE registration information diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 2e19554d3ab..890d3ee893a 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -11,10 +11,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo zypper install SUSEConnect # The following set of commands are designed to let you copy and paste -# them into a terminal window. The printf commands prompt you to enter +# them into a terminal window. The `printf` commands prompt you to enter # registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the printf commands -# commands and replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL +# non-interactive approach, you can remove the `printf` commands +# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` # with your registration information. # Store your SUSE registration information From 8b8124dc424bdd9b9daaab94217a0f9491a54360 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:09:29 -0400 Subject: [PATCH 123/180] Revert "revised wording for interactive commands" This reverts commit ad8af78d1c565eb0a3a6465d755339ce7e5c96a2. --- .../templates/platformBase/sles-12.njk | 15 ++++++--------- .../templates/platformBase/sles-15.njk | 18 ++++-------------- 2 files changed, 10 insertions(+), 23 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 63624dc2f72..e064a5cf65f 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -10,21 +10,18 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` -# with your registration information. - # Store your SUSE registration information printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. +# Register the host with SUSE using your stored information, +# which allows access to SUSE repositories SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Alternatively, remove the printf lines above and +# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your +# registration information in the previous command + # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 890d3ee893a..fad5c344170 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -10,20 +10,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# The following set of commands are designed to let you copy and paste -# them into a terminal window. The `printf` commands prompt you to enter -# registration information interactively. Alternatively, for a -# non-interactive approach, you can remove the `printf` commands -# commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` -# with your registration information. - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/{{ platform.arch }} From 5c5a8932c7d7440f9556b2b8212c58cb8835c48c Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:19:51 -0400 Subject: [PATCH 124/180] testing whether printf commands are successfully removed --- .../templates/platformBase/sles-12.njk | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index e064a5cf65f..ada7eacf0f1 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -10,17 +10,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Alternatively, remove the printf lines above and -# replace $SUSE_REGISTRATION_CODE and $SUSE_EMAIL with your -# registration information in the previous command +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/{{ platform.arch }} From fbd3d6d0c5100f2f5f63affdcf2181e263c01507 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:48:15 -0400 Subject: [PATCH 125/180] Dee Dee's changes to template Removed mini-TOC Switched to imperative for headings Revised base for EFM and MTK to remove TOC entries --- install_template/templates/platformBase/base.njk | 13 +++---------- .../templates/products/failover-manager/base.njk | 1 - .../templates/products/migration-toolkit/base.njk | 1 - 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index dea27e7bcb1..60b77028029 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -3,14 +3,7 @@ navTitle: {{ platform.name }} on {{ platform.arch }} title: Installing {{ product.name }} on {{ platform.name }} {{ platform.arch }} --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -{% block postinstallMenu %}{% endblock postinstallMenu %} - -For each step, you must be logged in as superuser. - +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - @@ -18,11 +11,11 @@ sudo su - Before setting up the repository, you need to 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 +## Set up the repository {% block prerequisites %}{% endblock prerequisites %} -## Installing the package +## Install the package {% block installCommand %}{% endblock installCommand %} diff --git a/install_template/templates/products/failover-manager/base.njk b/install_template/templates/products/failover-manager/base.njk index 928a7726d4a..39f04c65181 100644 --- a/install_template/templates/products/failover-manager/base.njk +++ b/install_template/templates/products/failover-manager/base.njk @@ -6,7 +6,6 @@ zypper -n install {{ packageName }} ``` Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. {% endblock installCommand %} -{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} {% block postinstall %} ## Initial configuration diff --git a/install_template/templates/products/migration-toolkit/base.njk b/install_template/templates/products/migration-toolkit/base.njk index 47545b9dfa4..4f566495040 100644 --- a/install_template/templates/products/migration-toolkit/base.njk +++ b/install_template/templates/products/migration-toolkit/base.njk @@ -1,6 +1,5 @@ {% extends "platformBase/" + platformBaseTemplate + '.njk' %} {% set packageName %}edb-migrationtoolkit{% endset %} -{% block postinstallMenu %}- [Initial configuration](#initial-configuration){% endblock postinstallMenu %} {% block postinstall %} ## Initial configuration Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. From 80af921fd52e026c0a54370c71f496bb0c77d562 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:54:02 -0400 Subject: [PATCH 126/180] additional wording changes from Dee Dee --- install_template/templates/platformBase/sles-12.njk | 2 +- install_template/templates/platformBase/sles-15.njk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index ada7eacf0f1..12caf7d6345 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,6 +1,6 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +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 # credentials when prompted diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index fad5c344170..460c1941583 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,6 +1,6 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. +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 # credentials when prompted From ac288a5f46808e5645f195f026b0f6df646822b0 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 08:57:31 -0400 Subject: [PATCH 127/180] forgot to delete one paragraph --- install_template/templates/platformBase/base.njk | 2 -- 1 file changed, 2 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 60b77028029..49311ba124d 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -9,8 +9,6 @@ Before you begin the installation process, log in as superuser. sudo su - ``` -Before setting up the repository, you need to register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - ## Set up the repository {% block prerequisites %}{% endblock prerequisites %} From 9e171547d2b884e4afdf08b95fe24c1e19ff376d Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 22 Apr 2022 09:00:53 -0400 Subject: [PATCH 128/180] rendered files reflecting removal of printf and Dee Dee's edits --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 16 ++++------------ .../failover-manager_4.4_sles-12_x86_64.mdx | 16 ++++------------ .../failover-manager_4.4_sles-15_ppc64le.mdx | 16 ++++------------ .../failover-manager_4.4_sles-15_x86_64.mdx | 16 ++++------------ .../migration-toolkit_55_sles-12_ppc64le.mdx | 15 ++++----------- .../migration-toolkit_55_sles-12_x86_64.mdx | 15 ++++----------- .../migration-toolkit_55_sles-15_ppc64le.mdx | 15 ++++----------- .../migration-toolkit_55_sles-15_x86_64.mdx | 15 ++++----------- 8 files changed, 32 insertions(+), 92 deletions(-) diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index 2fc594789e7..d75a6e1127e 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -3,24 +3,16 @@ navTitle: SLES 12 on ppc64le title: Installing Failover Manager on SLES 12 ppc64le --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -51,7 +43,7 @@ SUSEConnect -p sle-sdk/12.5/ppc64le zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-efm<4x> diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index 6470fd34f8c..57e9a5e38c5 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -3,24 +3,16 @@ navTitle: SLES 12 on x86_64 title: Installing Failover Manager on SLES 12 x86_64 --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -51,7 +43,7 @@ SUSEConnect -p sle-sdk/12.5/x86_64 zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-efm<4x> diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index ad993c87b3a..76040b878d2 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -3,24 +3,16 @@ navTitle: SLES 15 on ppc64le title: Installing Failover Manager on SLES 15 ppc64le --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -50,7 +42,7 @@ SUSEConnect -p PackageHub/15.3/ppc64le zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-efm<4x> diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index 459e266103f..d0ad8e75c4e 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -3,24 +3,16 @@ navTitle: SLES 15 on x86_64 title: Installing Failover Manager on SLES 15 x86_64 --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -50,7 +42,7 @@ SUSEConnect -p PackageHub/15.3/x86_64 zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-efm<4x> diff --git a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx index 02c16ab57e3..447d214e3e9 100644 --- a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx +++ b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx @@ -3,23 +3,16 @@ navTitle: SLES 12 on ppc64le title: Installing Migration Toolkit on SLES 12 ppc64le --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -50,7 +43,7 @@ SUSEConnect -p sle-sdk/12.5/ppc64le zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-migrationtoolkit diff --git a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx index 22aaacf74d2..23570d64ecd 100644 --- a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx +++ b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx @@ -3,23 +3,16 @@ navTitle: SLES 12 on x86_64 title: Installing Migration Toolkit on SLES 12 x86_64 --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -50,7 +43,7 @@ SUSEConnect -p sle-sdk/12.5/x86_64 zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-migrationtoolkit diff --git a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx index 6e828b57dcf..5e4d3885d8e 100644 --- a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx +++ b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx @@ -3,23 +3,16 @@ navTitle: SLES 15 on ppc64le title: Installing Migration Toolkit on SLES 15 ppc64le --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -49,7 +42,7 @@ SUSEConnect -p PackageHub/15.3/ppc64le zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-migrationtoolkit diff --git a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx index c8cacf4a479..51fc5520ca1 100644 --- a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx +++ b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx @@ -3,23 +3,16 @@ navTitle: SLES 15 on x86_64 title: Installing Migration Toolkit on SLES 15 x86_64 --- -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) - -For each step, you must be logged in as superuser. +Before you begin the installation process, log in as superuser. ```shell # To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to 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 +## 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 these steps. +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). !!! Note The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. @@ -49,7 +42,7 @@ SUSEConnect -p PackageHub/15.3/x86_64 zypper refresh ``` -## Installing the package +## Install the package ```shell zypper -n install edb-migrationtoolkit From 5760874bfbfa63f827a19abb4d9a7454a8a593af Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 25 Apr 2022 09:01:27 -0400 Subject: [PATCH 129/180] Re-added generated files (Not sure why they weren't showing up previously) --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 15 ++++--------- .../failover-manager_4.4_sles-12_x86_64.mdx | 15 ++++--------- .../failover-manager_4.4_sles-15_ppc64le.mdx | 15 ++++--------- .../failover-manager_4.4_sles-15_x86_64.mdx | 15 ++++--------- .../migration-toolkit_55_sles-12_ppc64le.mdx | 21 +++++++++---------- .../migration-toolkit_55_sles-12_x86_64.mdx | 21 +++++++++---------- .../migration-toolkit_55_sles-15_ppc64le.mdx | 21 +++++++++---------- .../migration-toolkit_55_sles-15_x86_64.mdx | 21 +++++++++---------- 8 files changed, 56 insertions(+), 88 deletions(-) diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx index d75a6e1127e..0a328524b67 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/ppc64le diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index 57e9a5e38c5..d343a8f72f7 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/x86_64 diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index 76040b878d2..c5aa63bf235 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/ppc64le diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index d0ad8e75c4e..62fb804025f 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/x86_64 diff --git a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx index 447d214e3e9..3640fcbeae6 100644 --- a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx +++ b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/ppc64le @@ -48,3 +41,9 @@ zypper refresh ```shell zypper -n install edb-migrationtoolkit ``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx index 23570d64ecd..0b68ef9814b 100644 --- a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx +++ b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE modules SUSEConnect -p PackageHub/12.5/x86_64 @@ -48,3 +41,9 @@ zypper refresh ```shell zypper -n install edb-migrationtoolkit ``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx index 5e4d3885d8e..c739c7f2970 100644 --- a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx +++ b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/ppc64le @@ -47,3 +40,9 @@ zypper refresh ```shell zypper -n install edb-migrationtoolkit ``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx index 51fc5520ca1..e4f3c661588 100644 --- a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx +++ b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx @@ -14,10 +14,6 @@ sudo su - 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). -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - ```shell # Install the repository configuration and enter your EDB repository # credentials when prompted @@ -27,13 +23,10 @@ zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo # to SUSE repositories zypper install SUSEConnect -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module SUSEConnect -p PackageHub/15.3/x86_64 @@ -47,3 +40,9 @@ zypper refresh ```shell zypper -n install edb-migrationtoolkit ``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. From b81979e83db049a990c82c44aceb371964356969 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 25 Apr 2022 09:56:48 -0400 Subject: [PATCH 130/180] moving intro text into Setting up repository block --- install_template/templates/platformBase/base.njk | 2 +- install_template/templates/platformBase/sles-12.njk | 1 - install_template/templates/platformBase/sles-15.njk | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index 49311ba124d..dcb98421468 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -10,7 +10,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). {% block prerequisites %}{% endblock prerequisites %} ## Install the package diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 12caf7d6345..984eca05ae7 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,6 +1,5 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -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 # credentials when prompted diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 460c1941583..84c2b88f970 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,6 +1,5 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -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 # credentials when prompted From 9ce44492cfb5567e295ebdbee220847ddaae34ca Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 25 Apr 2022 10:22:59 -0400 Subject: [PATCH 131/180] removing show and tell files --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 63 ---------------- .../failover-manager_4.4_sles-12_x86_64.mdx | 71 ------------------- .../failover-manager_4.4_sles-15_ppc64le.mdx | 70 ------------------ .../failover-manager_4.4_sles-15_x86_64.mdx | 70 ------------------ 4 files changed, 274 deletions(-) delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx delete mode 100644 product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx deleted file mode 100644 index b54ced064a8..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,63 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Failover Manager on SLES 12 ppc64le ---- - -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 first need to register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). - -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx deleted file mode 100644 index 6470fd34f8c..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-12_x86_64.mdx +++ /dev/null @@ -1,71 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Failover Manager on SLES 12 x86_64 ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx deleted file mode 100644 index ad993c87b3a..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,70 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Failover Manager on SLES 15 ppc64le ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx b/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx deleted file mode 100644 index 459e266103f..00000000000 --- a/product_docs/docs/efm/4/03_installing_efm/failover-manager_4.4_sles-15_x86_64.mdx +++ /dev/null @@ -1,70 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Failover Manager on SLES 15 x86_64 ---- - -To complete an installation: - -- [Setting up the repository](#setting-up-the-repository) -- [Installing the package](#installing-the-package) -- [Initial configuration](#initial-configuration) - -For each step, you must be logged in as superuser. - -```shell -# To log in as a superuser: -sudo su - -``` - -Before setting up the repository, you need to 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 - -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. - -!!! Note -The following set of commands is designed to let you copy and paste the commands into a terminal window. The `printf` commands prompt you to enter registration information interactively. Alternatively, for a non-interactive approach, you can remove the `printf` commands and replace `$SUSE_REGISTRATION_CODE` and `$SUSE_EMAIL` in the registration command (`SUSEConnect -r`) with your registration information. -!!! - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Store your SUSE registration information -printf "Enter SUSE subscription registration code: " && read -r SUSE_REGISTRATION_CODE -printf "Enter SUSE subscription email: " && read -r SUSE_EMAIL - -# Register the host with SUSE using your stored information, -# which allows access to SUSE repositories. -SUSEConnect -r $SUSE_REGISTRATION_CODE -e $SUSE_EMAIL - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Installing the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). From ab003196eadddc2d9a0eba3b95a7f595690052c2 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Tue, 26 Apr 2022 15:40:46 -0700 Subject: [PATCH 132/180] Remove rendered files --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 56 ------------------- .../failover-manager_4.4_sles-12_x86_64.mdx | 56 ------------------- .../failover-manager_4.4_sles-15_ppc64le.mdx | 55 ------------------ .../failover-manager_4.4_sles-15_x86_64.mdx | 55 ------------------ .../migration-toolkit_55_sles-12_ppc64le.mdx | 49 ---------------- .../migration-toolkit_55_sles-12_x86_64.mdx | 49 ---------------- .../migration-toolkit_55_sles-15_ppc64le.mdx | 48 ---------------- .../migration-toolkit_55_sles-15_x86_64.mdx | 48 ---------------- 8 files changed, 416 deletions(-) delete mode 100644 install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx deleted file mode 100644 index 0a328524b67..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Failover Manager on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx deleted file mode 100644 index d343a8f72f7..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Failover Manager on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx deleted file mode 100644 index c5aa63bf235..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,55 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Failover Manager on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx deleted file mode 100644 index 62fb804025f..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ /dev/null @@ -1,55 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Failover Manager on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx deleted file mode 100644 index 3640fcbeae6..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Migration Toolkit on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx deleted file mode 100644 index 0b68ef9814b..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Migration Toolkit on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx deleted file mode 100644 index c739c7f2970..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Migration Toolkit on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx deleted file mode 100644 index e4f3c661588..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Migration Toolkit on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. From f882e6976f6252546a46e66640401bf52a02a274 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Tue, 19 Apr 2022 07:56:33 -0700 Subject: [PATCH 133/180] Template techniques --- install_template/README.md | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/install_template/README.md b/install_template/README.md index 2a75da4b705..4372477f5ce 100644 --- a/install_template/README.md +++ b/install_template/README.md @@ -66,3 +66,43 @@ After a template file is found, no rules are enforced on how that template shoul - This template will choose a `platformBase` template to inherit from based on the value of `platformBaseTemplate`, which must be set by a child template. - the `packageName` macro used by the `platformBase` templates can be found in this template - a `postinstall` block containing copy shared by all of the EPAS docs can be found here. That said, this block is extended by some child templates. + +### Template techniques + +Nunjucks offers many tools that we can use to minimize repetition and increase the readability of templates. Which to use depends on circumstances. + +#### Placeholder blocks + +[Template inheritance](https://mozilla.github.io/nunjucks/templating.html#template-inheritance) is our primary method to structure templates. If we know that a bit of text only appears in a certain subset of rendered documentation, we can use an empty placeholder block to define where that text goes. Then in the appropriate child template, we can override the placeholder block. + +Note that the definition should be filled in at the most general template possible. So if a block is specific to, say, BDR, we should include the definition in the BDR product template. Or, if the block is specific to a single version of RHEL, it would be defined in that version's template. It's also possible, to redefine a placeholder block again if there is an exception to the exception. You can even revert back to an empty block, if needed. + +Placeholder blocks are convenient and self-documenting, but they do depend on having the right inheritance structure in place. It's sometimes necessary to add a level of inheritance to create the appropriate abstraction layers. If you find yourself repeating the same block customization, you should evaluate whether the inheritance structure is right. Alternatively, you might need to use another technique. + +#### Include other templates + +When there are pieces of text that need to be repeated, but don't have a place in the existing structure, consider using [the `include` tag](https://mozilla.github.io/nunjucks/templating.html#include). For instance, we might want to includes a disclaimer for platforms nearing the end of our support cycle. Rather than repeat that warning in each affected template, we could put the text in a new template that we include when needed. + +In Nunjucks, `include` doesn't work like a pre-processor (inserting code before rendering). Instead, included templates are rendered and the results are inserted. That means you can't use `include` to override a block in the calling template and blocks defined in the calling template aren't visible to the included template. Included templates should be considered self-contained snippets. + +#### Macros + +Sometimes a chunk of text varies only by a few discrete variables. In that case, a [macro](https://mozilla.github.io/nunjucks/templating.html#macro) might be in order. We currently have two macros in `/templates/platformBase/_shared.njk`: + +1. `centosRepositoryConfiguration(packageManager, epelRepo)` +2. `centosInstallCommand(packageManager, packageName)` + +When that file is [imported](https://mozilla.github.io/nunjucks/templating.html#import) (not included) in another template, those macros can be used to insert the proper instructions for configuring the repository and installing the package. By using a few variables (`packageManager`, `epelRepo` and `packageName`), we can generate many different combinations of instructions from a single source. + +Macros can be self-documenting and avoid [action-at-a-distance problems](https://en.wikipedia.org/wiki/Action_at_a_distance_(computer_programming)). If you call a macro, it's easier to know what you are going to get in the render. + +#### Conditionals + +We also use global variables to trigger conditionals: + +1. `templates/platformBase/centos-7.njk` uses the value of `includePPC` to determine whether to install [Advance Toolchain](https://github.com/advancetoolchain/advance-toolchain). +2. `templates/platformBase/rhel-7-or-ol-7.njk` uses the value of `includeLOCAL` to trigger an option to create a local repository. + +For small template systems, this system works well enough. But as the number of templates increases, this becomes harder to understand. In this case, we need to search through the template files to find out where the variables are being used. Fortunately, they are used just once, but it's not hard to imagine multiple (and exclusive) conditionals that are hard to read, modify and debug. + +It's almost always better to use one of the other techniques than fall back on conditionals triggered by global variables. From 56a8c578b4406fe7406076e4e9afff601d933deb Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Tue, 19 Apr 2022 16:12:54 -0700 Subject: [PATCH 134/180] Test out a change to the sles install templates --- .../templates/platformBase/sles-12.njk | 4 +++- .../templates/platformBase/sles-15.njk | 24 +++---------------- 2 files changed, 6 insertions(+), 22 deletions(-) diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 984eca05ae7..d93712f72b0 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -14,9 +14,11 @@ zypper install SUSEConnect # registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -# Activate the required SUSE modules +# Activate the required SUSE module +{%- block activateSUSEmodule %} SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} +{% endblock activateSUSEmodule %} # Refresh the metadata zypper refresh diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 84c2b88f970..6cf0642ad63 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,3 +1,4 @@ + {% extends "platformBase/base.njk" %} {% block prerequisites %} ```shell @@ -5,26 +6,7 @@ # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module +{% block activateSUSEmodule %} SUSEConnect -p PackageHub/15.3/{{ platform.arch }} - -# Refresh the metadata -zypper refresh -``` -{% endblock prerequisites %} - -{% block installCommand %} -```shell -zypper -n install {{ packageName }} -``` -{% endblock installCommand %} +{% endblock activateSUSEmodule %} From 1c4bbf82370bd7d55d2ca562ec5de4a433baf1fb Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 28 Apr 2022 10:18:40 -0400 Subject: [PATCH 135/180] removed vertical line in sles-12 base file, added new generated files --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 56 +++++++++++++++++++ .../failover-manager_4.4_sles-12_x86_64.mdx | 56 +++++++++++++++++++ .../failover-manager_4.4_sles-15_ppc64le.mdx | 55 ++++++++++++++++++ .../failover-manager_4.4_sles-15_x86_64.mdx | 55 ++++++++++++++++++ .../migration-toolkit_55_sles-12_ppc64le.mdx | 49 ++++++++++++++++ .../migration-toolkit_55_sles-12_x86_64.mdx | 49 ++++++++++++++++ .../migration-toolkit_55_sles-15_ppc64le.mdx | 48 ++++++++++++++++ .../migration-toolkit_55_sles-15_x86_64.mdx | 48 ++++++++++++++++ .../templates/platformBase/sles-12.njk | 1 - 9 files changed, 416 insertions(+), 1 deletion(-) create mode 100644 install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx create mode 100644 install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx create mode 100644 install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx create mode 100644 install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx create mode 100644 install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx create mode 100644 install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..bd5be141423 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx @@ -0,0 +1,56 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Failover Manager on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx new file mode 100644 index 00000000000..8237f6d04e7 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -0,0 +1,56 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Failover Manager on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..c5aa63bf235 --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -0,0 +1,55 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Failover Manager on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx new file mode 100644 index 00000000000..62fb804025f --- /dev/null +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -0,0 +1,55 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Failover Manager on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-efm<4x> +``` + +Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. + +## Initial configuration + +If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). + +After installing on each node of the cluster: + +1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. +2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. +3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. +4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..c908920ff6f --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx @@ -0,0 +1,49 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Migration Toolkit on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx new file mode 100644 index 00000000000..48bfd5b0096 --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx @@ -0,0 +1,49 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Migration Toolkit on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..c739c7f2970 --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Migration Toolkit on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx new file mode 100644 index 00000000000..e4f3c661588 --- /dev/null +++ b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Migration Toolkit on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-migrationtoolkit +``` + +## Initial configuration + +Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. + +After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index d93712f72b0..97555973db3 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -19,7 +19,6 @@ SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} {% endblock activateSUSEmodule %} - # Refresh the metadata zypper refresh ``` From b5eb58933d235011c45a3ecc067128400caa8746 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 10 May 2022 08:47:30 -0400 Subject: [PATCH 136/180] Added Hadoop SLES topics to config file --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 2c22cfbbeda..a7610a1812f 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -347,8 +347,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [4.4] - # - name: Hadoop Foreign Data Wrapper - # platforms: + - name: Hadoop Foreign Data Wrapper + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [14] @@ -373,18 +373,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: MongoDB Foreign Data Wrapper # platforms: # - name: CentOS 7 From a0292b107cdeb413e76ea8f0d3284c0f98a33547 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 10 May 2022 08:49:55 -0400 Subject: [PATCH 137/180] revised config file --- install_template/config.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index a7610a1812f..c2c7b503f37 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -373,18 +373,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: MongoDB Foreign Data Wrapper # platforms: # - name: CentOS 7 From c76153bae3c87e8d7b6b1366a88142026fac861f Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 10 May 2022 08:57:08 -0400 Subject: [PATCH 138/180] more revisions to config file --- install_template/config.yaml | 72 ++++++++++++++++++------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index c2c7b503f37..317dc3eac4a 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -51,12 +51,12 @@ products: # - name: CentOS 7 # arch: x86_64 # supported versions: [55] - - name: SLES 15 - arch: x86_64 - supported versions: [55] - - name: SLES 12 - arch: ppc64le - supported versions: [55] + - name: SLES 15 + arch: x86_64 + supported versions: [55] + - name: SLES 12 + arch: ppc64le + supported versions: [55] # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [55] @@ -69,12 +69,12 @@ products: # - name: RHEL 7 or OL 7 # arch: ppc64le # supported versions: [55] - - name: SLES 15 - arch: ppc64le - supported versions: [55] - - name: SLES 12 - arch: x86_64 - supported versions: [55] + - name: SLES 15 + arch: ppc64le + supported versions: [55] + - name: SLES 12 + arch: x86_64 + supported versions: [55] # - name: EDB OCI Connector # platforms: # - name: CentOS 7 @@ -335,18 +335,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: SLES 12 - arch: x86_64 - supported versions: [4.4] - - name: SLES 12 - arch: ppc64le - supported versions: [4.4] - - name: SLES 15 - arch: x86_64 - supported versions: [4.4] - - name: SLES 15 - arch: ppc64le - supported versions: [4.4] + - name: SLES 12 + arch: x86_64 + supported versions: [4.4] + - name: SLES 12 + arch: ppc64le + supported versions: [4.4] + - name: SLES 15 + arch: x86_64 + supported versions: [4.4] + - name: SLES 15 + arch: ppc64le + supported versions: [4.4] - name: Hadoop Foreign Data Wrapper platforms: # - name: CentOS 7 @@ -373,18 +373,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: MongoDB Foreign Data Wrapper # platforms: # - name: CentOS 7 From 10c5dd8675a04cd7c617bd7e00facc9ba5a89124 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 10 May 2022 09:10:06 -0400 Subject: [PATCH 139/180] Generated files for SLES in Hadoop --- ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 43 +++++++++++++++++++ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 43 +++++++++++++++++++ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 42 ++++++++++++++++++ ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 42 ++++++++++++++++++ 4 files changed, 170 insertions(+) create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..cd3d02288f7 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -0,0 +1,43 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing Hadoop Foreign Data Wrapper on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..2fa87022529 --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -0,0 +1,43 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing Hadoop Foreign Data Wrapper on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..b83844096de --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -0,0 +1,42 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing Hadoop Foreign Data Wrapper on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..cc415a4a11c --- /dev/null +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -0,0 +1,42 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing Hadoop Foreign Data Wrapper on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-hdfs_fdw +``` From 50991cbb1d200a350cd3c8b54855a624539854b3 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 10 May 2022 09:12:56 -0400 Subject: [PATCH 140/180] Added SLES topics for Mongo --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 317dc3eac4a..5d1162d0761 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -385,8 +385,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - # - name: MongoDB Foreign Data Wrapper - # platforms: + - name: MongoDB Foreign Data Wrapper + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -411,18 +411,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: MySQL Foreign Data Wrapper # platforms: # - name: CentOS 7 From ba9cc2d44a3fd701c54d9d127587bcf5c9481c0a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 10 May 2022 09:19:42 -0400 Subject: [PATCH 141/180] Committing generated SLES topics for Mongo --- ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 43 +++++++++++++++++++ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 43 +++++++++++++++++++ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 42 ++++++++++++++++++ ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 42 ++++++++++++++++++ 4 files changed, 170 insertions(+) create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..d1155974b19 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -0,0 +1,43 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing MongoDB Foreign Data Wrapper on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mongo_fdw +``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..2307cdbbf99 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -0,0 +1,43 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing MongoDB Foreign Data Wrapper on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mongo_fdw +``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..b603321484e --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -0,0 +1,42 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing MongoDB Foreign Data Wrapper on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mongo_fdw +``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..5e30991e5e0 --- /dev/null +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -0,0 +1,42 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing MongoDB Foreign Data Wrapper on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mongo_fdw +``` From d98d742b90038256a748f715e9eb84f4275f8711 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 10 May 2022 09:22:22 -0400 Subject: [PATCH 142/180] Adding MySQL SLES topics to config file --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 5d1162d0761..295655c5c3e 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -423,8 +423,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - # - name: MySQL Foreign Data Wrapper - # platforms: + - name: MySQL Foreign Data Wrapper + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -449,18 +449,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: PostGIS # platforms: # - name: CentOS 7 From 056a829f279c8196d53477343d137301cce8be1b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 11 May 2022 08:56:28 -0400 Subject: [PATCH 143/180] Changes to config file to add SLES for MySQL --- install_template/config.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index 295655c5c3e..5d1162d0761 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -423,8 +423,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - - name: MySQL Foreign Data Wrapper - platforms: + # - name: MySQL Foreign Data Wrapper + # platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -449,18 +449,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] # - name: PostGIS # platforms: # - name: CentOS 7 From d4f7a42cb461f65c8a68b6bb216f7ad51ac1f0dc Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 11 May 2022 11:32:33 -0400 Subject: [PATCH 144/180] Added SLES topics for MySQL and committed generated topics --- install_template/config.yaml | 28 +++++----- ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 45 ++++++++++++++++ ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 53 +++++++++++++++++++ ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 +++++++++++++++++ ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 +++++++++++++++++ 5 files changed, 208 insertions(+), 14 deletions(-) create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx diff --git a/install_template/config.yaml b/install_template/config.yaml index 5d1162d0761..295655c5c3e 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -423,8 +423,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - # - name: MySQL Foreign Data Wrapper - # platforms: + - name: MySQL Foreign Data Wrapper + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -449,18 +449,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: PostGIS # platforms: # - name: CentOS 7 diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..0f456520f99 --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing MySQL Foreign Data Wrapper on SLES 12 ppc64le +--- + +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 have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..a639bb2b0ec --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -0,0 +1,53 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing MySQL Foreign Data Wrapper on SLES 12 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 have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration +# information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Install the MySQL community repository +wget https://dev.mysql.com/get/mysql80-community-release-sles12-5.noarch.rpm +rpm --import /etc/RPM-GPG-KEY-mysql-2022 + +# Enable the MySQL8 repository and disable the MySQL 5 repository +zypper modifyrepo -e mysql80-community +zypper modifyrepo -d mysql57-community + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..aa09896a53c --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -0,0 +1,48 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing MySQL Foreign Data Wrapper on SLES 15 ppc64le +--- + +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 have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/ppc64le + +# Install the community MySQL repository +rpm -i https://dev.mysql.com/get/mysql80-community-release-sl15-5.noarch.rpm +rpm --import /etc/RPM-GPG-KEY-mysql-2022 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..1d77fb1da7c --- /dev/null +++ b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -0,0 +1,48 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing MySQL Foreign Data Wrapper on SLES 15 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 have already set up your repository, you do not need to perform these steps. + +```shell +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module +SUSEConnect -p PackageHub/15.3/x86_64 + +# Install the community MySQL repository +rpm -i https://dev.mysql.com/get/mysql80-community-release-sl15-5.noarch.rpm +rpm --import /etc/RPM-GPG-KEY-mysql-2022 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as14-mysql8_fdw +``` From a9ac5fc350f66a0fcfe2d398e4fd37e0738d4926 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 25 May 2022 11:40:52 -0400 Subject: [PATCH 145/180] some repairs to sles template files to correct problems Problems were presumably introduced by resolving conflicts during rebase Changes to mdx files are all spacing issues, which I can't seem to correct --- .../failover-manager_4.4_sles-12_x86_64.mdx | 1 + .../failover-manager_4.4_sles-15_ppc64le.mdx | 1 + .../failover-manager_4.4_sles-15_x86_64.mdx | 1 + ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 1 + ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 1 + ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 1 + ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 1 + .../migration-toolkit_55_sles-12_ppc64le.mdx | 1 + .../migration-toolkit_55_sles-12_x86_64.mdx | 1 + .../migration-toolkit_55_sles-15_ppc64le.mdx | 1 + .../migration-toolkit_55_sles-15_x86_64.mdx | 1 + ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 1 + ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 1 + ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 1 + ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 1 + .../templates/platformBase/sles-12.njk | 2 +- .../templates/platformBase/sles-15.njk | 23 +++++++++++++++++++ 17 files changed, 39 insertions(+), 1 deletion(-) diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx index 8237f6d04e7..f3d0b6008ce 100644 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/12.5/x86_64 SUSEConnect -p sle-sdk/12.5/x86_64 diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx index c5aa63bf235..4260c6f50ab 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx index 62fb804025f..78058f0f907 100644 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/x86_64 # Refresh the metadata diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx index cd3d02288f7..8f907596c78 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/12.5/ppc64le SUSEConnect -p sle-sdk/12.5/ppc64le diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx index 2fa87022529..11326fc1154 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/12.5/x86_64 SUSEConnect -p sle-sdk/12.5/x86_64 diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx index b83844096de..80218ed2324 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx index cc415a4a11c..c90b6543f0a 100644 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/x86_64 # Refresh the metadata diff --git a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx index c908920ff6f..c4b17a8635c 100644 --- a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx +++ b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/12.5/ppc64le SUSEConnect -p sle-sdk/12.5/ppc64le diff --git a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx index 48bfd5b0096..f971084accf 100644 --- a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx +++ b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/12.5/x86_64 SUSEConnect -p sle-sdk/12.5/x86_64 diff --git a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx index c739c7f2970..a559303b440 100644 --- a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx +++ b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata diff --git a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx index e4f3c661588..465d2050435 100644 --- a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx +++ b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/x86_64 # Refresh the metadata diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx index d1155974b19..e5f58a343d8 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/12.5/ppc64le SUSEConnect -p sle-sdk/12.5/ppc64le diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx index 2307cdbbf99..efe7bceda93 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/12.5/x86_64 SUSEConnect -p sle-sdk/12.5/x86_64 diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx index b603321484e..1478aadcdf0 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/ppc64le # Refresh the metadata diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx index 5e30991e5e0..dd3c8ac5264 100644 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx @@ -29,6 +29,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module + SUSEConnect -p PackageHub/15.3/x86_64 # Refresh the metadata diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index 97555973db3..fc0a8666a09 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -15,7 +15,7 @@ zypper install SUSEConnect SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module -{%- block activateSUSEmodule %} +{% block activateSUSEmodule %} SUSEConnect -p PackageHub/12.5/{{ platform.arch }} SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} {% endblock activateSUSEmodule %} diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 6cf0642ad63..7caec53052a 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -6,7 +6,30 @@ # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE module {% block activateSUSEmodule %} SUSEConnect -p PackageHub/15.3/{{ platform.arch }} {% endblock activateSUSEmodule %} +# Refresh the metadata +zypper refresh +``` +{% endblock prerequisites %} + +{% block installCommand %} +```shell +zypper -n install {{ packageName }} +``` +{% endblock installCommand %} + + + From 3db4ad960518976ee5f4559dee15db739f088dd1 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 25 May 2022 13:50:37 -0400 Subject: [PATCH 146/180] Removing rendered files --- .../failover-manager_4.4_sles-12_ppc64le.mdx | 56 ------------------ .../failover-manager_4.4_sles-12_x86_64.mdx | 57 ------------------- .../failover-manager_4.4_sles-15_ppc64le.mdx | 56 ------------------ .../failover-manager_4.4_sles-15_x86_64.mdx | 56 ------------------ ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 44 -------------- ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 44 -------------- ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 43 -------------- ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 43 -------------- .../migration-toolkit_55_sles-12_ppc64le.mdx | 50 ---------------- .../migration-toolkit_55_sles-12_x86_64.mdx | 50 ---------------- .../migration-toolkit_55_sles-15_ppc64le.mdx | 49 ---------------- .../migration-toolkit_55_sles-15_x86_64.mdx | 49 ---------------- ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 44 -------------- ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 44 -------------- ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 43 -------------- ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 43 -------------- ...oreign-data-wrapper_14_sles-12_ppc64le.mdx | 45 --------------- ...foreign-data-wrapper_14_sles-12_x86_64.mdx | 53 ----------------- ...oreign-data-wrapper_14_sles-15_ppc64le.mdx | 48 ---------------- ...foreign-data-wrapper_14_sles-15_x86_64.mdx | 48 ---------------- 20 files changed, 965 deletions(-) delete mode 100644 install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx diff --git a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx deleted file mode 100644 index bd5be141423..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-12_ppc64le.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Failover Manager on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx deleted file mode 100644 index f3d0b6008ce..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-12_x86_64.mdx +++ /dev/null @@ -1,57 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Failover Manager on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx b/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx deleted file mode 100644 index 4260c6f50ab..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-15_ppc64le.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Failover Manager on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx b/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx deleted file mode 100644 index 78058f0f907..00000000000 --- a/install_template/renders/failover-manager_4.4_sles-15_x86_64.mdx +++ /dev/null @@ -1,56 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Failover Manager on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-efm<4x> -``` - -Where `<4x>` is the version of Failover Manager you are installing. For example, if you are installing version 4.0, the package name would be `edb-efm40`. - -## Initial configuration - -If you are using Failover Manager to monitor a cluster owned by a user other than enterprisedb or postgres, see [Extending Failover Manager permissions](../04_configuring_efm/04_extending_efm_permissions/#extending_efm_permissions). - -After installing on each node of the cluster: - -1. Modify the [cluster properties file](../04_configuring_efm/01_cluster_properties/#cluster_properties) on each node. -2. Modify the [cluster members file](../04_configuring_efm/03_cluster_members/#cluster_members) on each node. -3. If applicable, configure and test virtual IP address settings and any scripts that are identified in the cluster properties file. -4. Start the agent on each node of the cluster. For more information, see [Controlling the Failover Manager service](../08_controlling_efm_service/#controlling-the-failover-manager-service). diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx deleted file mode 100644 index 8f907596c78..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Hadoop Foreign Data Wrapper on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx deleted file mode 100644 index 11326fc1154..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Hadoop Foreign Data Wrapper on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx deleted file mode 100644 index 80218ed2324..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Hadoop Foreign Data Wrapper on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` diff --git a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx deleted file mode 100644 index c90b6543f0a..00000000000 --- a/install_template/renders/hadoop-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Hadoop Foreign Data Wrapper on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-hdfs_fdw -``` diff --git a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx deleted file mode 100644 index c4b17a8635c..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-12_ppc64le.mdx +++ /dev/null @@ -1,50 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing Migration Toolkit on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx deleted file mode 100644 index f971084accf..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-12_x86_64.mdx +++ /dev/null @@ -1,50 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing Migration Toolkit on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx b/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx deleted file mode 100644 index a559303b440..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-15_ppc64le.mdx +++ /dev/null @@ -1,49 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing Migration Toolkit on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx b/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx deleted file mode 100644 index 465d2050435..00000000000 --- a/install_template/renders/migration-toolkit_55_sles-15_x86_64.mdx +++ /dev/null @@ -1,49 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing Migration Toolkit on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-migrationtoolkit -``` - -## Initial configuration - -Before invoking Migration Toolkit, you must download and install a freely available source-specific driver. To download a driver, or for a link to a vendor download site, see the [Third Party JDBC Drivers](https://www.enterprisedb.com/software-downloads-postgres#third-party-jdbc-drivers) on the Downloads page. - -After downloading the source-specific driver, move the driver file into the `/lib` directory. diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx deleted file mode 100644 index e5f58a343d8..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing MongoDB Foreign Data Wrapper on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mongo_fdw -``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx deleted file mode 100644 index efe7bceda93..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing MongoDB Foreign Data Wrapper on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mongo_fdw -``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx deleted file mode 100644 index 1478aadcdf0..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing MongoDB Foreign Data Wrapper on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mongo_fdw -``` diff --git a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx deleted file mode 100644 index dd3c8ac5264..00000000000 --- a/install_template/renders/mongodb-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing MongoDB Foreign Data Wrapper on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module - -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mongo_fdw -``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx deleted file mode 100644 index 0f456520f99..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing MySQL Foreign Data Wrapper on SLES 12 ppc64le ---- - -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 have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx deleted file mode 100644 index a639bb2b0ec..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,53 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing MySQL Foreign Data Wrapper on SLES 12 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 have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration -# information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Install the MySQL community repository -wget https://dev.mysql.com/get/mysql80-community-release-sles12-5.noarch.rpm -rpm --import /etc/RPM-GPG-KEY-mysql-2022 - -# Enable the MySQL8 repository and disable the MySQL 5 repository -zypper modifyrepo -e mysql80-community -zypper modifyrepo -d mysql57-community - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx deleted file mode 100644 index aa09896a53c..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing MySQL Foreign Data Wrapper on SLES 15 ppc64le ---- - -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 have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/ppc64le - -# Install the community MySQL repository -rpm -i https://dev.mysql.com/get/mysql80-community-release-sl15-5.noarch.rpm -rpm --import /etc/RPM-GPG-KEY-mysql-2022 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` diff --git a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx b/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx deleted file mode 100644 index 1d77fb1da7c..00000000000 --- a/install_template/renders/mysql-foreign-data-wrapper_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing MySQL Foreign Data Wrapper on SLES 15 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 have already set up your repository, you do not need to perform these steps. - -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/x86_64 - -# Install the community MySQL repository -rpm -i https://dev.mysql.com/get/mysql80-community-release-sl15-5.noarch.rpm -rpm --import /etc/RPM-GPG-KEY-mysql-2022 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as14-mysql8_fdw -``` From 97c36787c267205d0a721e73a95a5fe6183bac8b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Thu, 19 May 2022 10:45:53 -0400 Subject: [PATCH 147/180] Check generated SLES topics for P products still working on extensions for PgPool --- install_template/config.yaml | 84 +++++++++---------- .../edb-pgbouncer_1.16_sles-12_ppc64le.mdx | 45 ++++++++++ .../edb-pgbouncer_1.16_sles-12_x86_64.mdx | 45 ++++++++++ .../edb-pgbouncer_1.16_sles-15_ppc64le.mdx | 44 ++++++++++ .../edb-pgbouncer_1.16_sles-15_x86_64.mdx | 44 ++++++++++ .../edb-pgpoolii_4.3_sles-12_ppc64le.mdx | 45 ++++++++++ .../edb-pgpoolii_4.3_sles-12_x86_64.mdx | 45 ++++++++++ .../edb-pgpoolii_4.3_sles-15_ppc64le.mdx | 44 ++++++++++ .../edb-pgpoolii_4.3_sles-15_x86_64.mdx | 44 ++++++++++ .../renders/postgis_14_sles-12_ppc64le.mdx | 45 ++++++++++ .../renders/postgis_14_sles-12_x86_64.mdx | 45 ++++++++++ .../renders/postgis_14_sles-15_ppc64le.mdx | 45 ++++++++++ .../renders/postgis_14_sles-15_x86_64.mdx | 45 ++++++++++ .../templates/products/edb-pgbouncer/base.njk | 2 +- .../templates/products/edb-pgpoolii/base.njk | 2 +- .../templates/products/postgis/base.njk | 2 +- .../templates/products/postgis/sles-15.njk | 6 +- .../products/postgis/sles-15_ppc64le.njk | 6 +- .../edb-pgpoolii_4.3_sles-12_ppc64le.mdx | 45 ++++++++++ .../edb-pgpoolii_4.3_sles-12_x86_64.mdx | 45 ++++++++++ .../edb-pgpoolii_4.3_sles-15_ppc64le.mdx | 44 ++++++++++ .../edb-pgpoolii_4.3_sles-15_x86_64.mdx | 44 ++++++++++ 22 files changed, 769 insertions(+), 47 deletions(-) create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx create mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx create mode 100644 install_template/renders/postgis_14_sles-12_ppc64le.mdx create mode 100644 install_template/renders/postgis_14_sles-12_x86_64.mdx create mode 100644 install_template/renders/postgis_14_sles-15_ppc64le.mdx create mode 100644 install_template/renders/postgis_14_sles-15_x86_64.mdx create mode 100644 product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx create mode 100644 product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx create mode 100644 product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx create mode 100644 product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx diff --git a/install_template/config.yaml b/install_template/config.yaml index 295655c5c3e..e3c5dfc6ce5 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -151,8 +151,8 @@ products: # - name: SLES 15 # arch: ppc64le # supported versions: [13.1.0.2] - # - name: EDB pgBouncer - # platforms: + - name: EDB pgBouncer + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [1.14, 1.15, 1.16] @@ -177,20 +177,20 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [1.14, 1.15, 1.16] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [1.16] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [1.16] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [1.16] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [1.16] - # - name: EDB PgpoolII - # platforms: + - name: SLES 12 + arch: x86_64 + supported versions: [1.16] + - name: SLES 12 + arch: ppc64le + supported versions: [1.16] + - name: SLES 15 + arch: x86_64 + supported versions: [1.16] + - name: SLES 15 + arch: ppc64le + supported versions: [1.16] + - name: EDB PgpoolII + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] @@ -215,18 +215,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [4.3] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [4.3] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [4.3] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [4.3] + - name: SLES 12 + arch: x86_64 + supported versions: [4.3] + - name: SLES 12 + arch: ppc64le + supported versions: [4.3] + - name: SLES 15 + arch: x86_64 + supported versions: [4.3] + - name: SLES 15 + arch: ppc64le + supported versions: [4.3] # - name: EDB Postgres Advanced Server # platforms: # - name: CentOS 7 @@ -461,8 +461,8 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - # - name: PostGIS - # platforms: + - name: PostGIS + platforms: # - name: CentOS 7 # arch: x86_64 # supported versions: [11, 12, 13, 14] @@ -487,18 +487,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: Postgres Enterprise Manager # platforms: # - name: CentOS 7 diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..e73b5c9205b --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing EDB pgBouncer on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgbouncer +``` + +Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx new file mode 100644 index 00000000000..2b9205bcb10 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing EDB pgBouncer on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgbouncer +``` + +Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..bda8d2a9759 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx @@ -0,0 +1,44 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing EDB pgBouncer on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgbouncer +``` + +Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx new file mode 100644 index 00000000000..ebba55a9753 --- /dev/null +++ b/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx @@ -0,0 +1,44 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing EDB pgBouncer on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgbouncer +``` + +Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..7772f39de77 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing EDB PgpoolII on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ee6337d1431 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing EDB PgpoolII on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..525e2bd6c59 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx @@ -0,0 +1,44 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing EDB PgpoolII on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx new file mode 100644 index 00000000000..8d8b171b0b6 --- /dev/null +++ b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx @@ -0,0 +1,44 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing EDB PgpoolII on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/postgis_14_sles-12_ppc64le.mdx b/install_template/renders/postgis_14_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..2cfd8be246c --- /dev/null +++ b/install_template/renders/postgis_14_sles-12_ppc64le.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing PostGIS on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as-postgis3 +``` + +Where `` is the version of PostGIS 3 you are installing. diff --git a/install_template/renders/postgis_14_sles-12_x86_64.mdx b/install_template/renders/postgis_14_sles-12_x86_64.mdx new file mode 100644 index 00000000000..b84da02a4f8 --- /dev/null +++ b/install_template/renders/postgis_14_sles-12_x86_64.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing PostGIS on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as-postgis3 +``` + +Where `` is the version of PostGIS 3 you are installing. diff --git a/install_template/renders/postgis_14_sles-15_ppc64le.mdx b/install_template/renders/postgis_14_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..f98e2dacdae --- /dev/null +++ b/install_template/renders/postgis_14_sles-15_ppc64le.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing PostGIS on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p sle-module-desktop-applications/15.3/ppc64le +SUSEConnect -d -p sle-module-development-tools/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as-postgis3 +``` + +Where `` is the version of PostGIS 3 you are installing. diff --git a/install_template/renders/postgis_14_sles-15_x86_64.mdx b/install_template/renders/postgis_14_sles-15_x86_64.mdx new file mode 100644 index 00000000000..2251e135bfb --- /dev/null +++ b/install_template/renders/postgis_14_sles-15_x86_64.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing PostGIS on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p sle-module-desktop-applications/15.3/x86_64 +SUSEConnect -d -p sle-module-development-tools/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-as-postgis3 +``` + +Where `` is the version of PostGIS 3 you are installing. diff --git a/install_template/templates/products/edb-pgbouncer/base.njk b/install_template/templates/products/edb-pgbouncer/base.njk index c6affaf8ce0..8618c7c4c3e 100644 --- a/install_template/templates/products/edb-pgbouncer/base.njk +++ b/install_template/templates/products/edb-pgbouncer/base.njk @@ -4,5 +4,5 @@ ```shell zypper -n install {{ packageName }} ``` -Where xx is the version of EDB PgBouncer you are installing. +Where `` is the version of EDB PgBouncer you are installing. {% endblock installCommand %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii/base.njk b/install_template/templates/products/edb-pgpoolii/base.njk index 010f6fc0f18..9dbc78954e0 100644 --- a/install_template/templates/products/edb-pgpoolii/base.njk +++ b/install_template/templates/products/edb-pgpoolii/base.njk @@ -4,5 +4,5 @@ ```shell zypper -n install {{ packageName }} ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the version of EDB PbPool-II you are installing. {% endblock installCommand %} diff --git a/install_template/templates/products/postgis/base.njk b/install_template/templates/products/postgis/base.njk index 04993c3e04f..6f7d1badffd 100644 --- a/install_template/templates/products/postgis/base.njk +++ b/install_template/templates/products/postgis/base.njk @@ -4,5 +4,5 @@ ```shell zypper -n install {{ packageName }} ``` -Where xx is the version of PostGIS 3 you are installing. +Where `` is the version of PostGIS 3 you are installing. {% endblock installCommand %} diff --git a/install_template/templates/products/postgis/sles-15.njk b/install_template/templates/products/postgis/sles-15.njk index 49f565e1978..512bd391287 100644 --- a/install_template/templates/products/postgis/sles-15.njk +++ b/install_template/templates/products/postgis/sles-15.njk @@ -1,2 +1,6 @@ {% extends "products/postgis/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file +{% set platformBaseTemplate = "sles-15" %} +{%- block activateSUSEmodule %} +SUSEConnect -p sle-module-desktop-applications/15.3/{{ platform.arch }} +SUSEConnect -d -p sle-module-development-tools/15.3/{{ platform.arch }} +{% endblock activateSUSEmodule %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/sles-15_ppc64le.njk b/install_template/templates/products/postgis/sles-15_ppc64le.njk index 52ab2a2a358..d43c7edd9f2 100644 --- a/install_template/templates/products/postgis/sles-15_ppc64le.njk +++ b/install_template/templates/products/postgis/sles-15_ppc64le.njk @@ -1,3 +1,7 @@ {% extends "products/postgis/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} \ No newline at end of file +{% set includePPC = true %} +{%- block activateSUSEmodule %} +SUSEConnect -p sle-module-desktop-applications/15.3/{{ platform.arch }} +SUSEConnect -d -p sle-module-development-tools/15.3/{{ platform.arch }} +{% endblock activateSUSEmodule %} \ No newline at end of file diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx new file mode 100644 index 00000000000..7772f39de77 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on ppc64le +title: Installing EDB PgpoolII on SLES 12 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/ppc64le +SUSEConnect -p sle-sdk/12.5/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx new file mode 100644 index 00000000000..ee6337d1431 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx @@ -0,0 +1,45 @@ +--- +navTitle: SLES 12 on x86_64 +title: Installing EDB PgpoolII on SLES 12 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/12.5/x86_64 +SUSEConnect -p sle-sdk/12.5/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx new file mode 100644 index 00000000000..525e2bd6c59 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx @@ -0,0 +1,44 @@ +--- +navTitle: SLES 15 on ppc64le +title: Installing EDB PgpoolII on SLES 15 ppc64le +--- + +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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/15.3/ppc64le + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx new file mode 100644 index 00000000000..8d8b171b0b6 --- /dev/null +++ b/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx @@ -0,0 +1,44 @@ +--- +navTitle: SLES 15 on x86_64 +title: Installing EDB PgpoolII on SLES 15 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 +# Install the repository configuration and enter your EDB repository +# credentials when prompted +zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo + +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories +zypper install SUSEConnect + +# Register the host with SUSE, allowing access to SUSE repositories +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information +SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' + +# Activate the required SUSE modules +SUSEConnect -p PackageHub/15.3/x86_64 + +# Refresh the metadata +zypper refresh +``` + +## Install the package + +```shell +zypper -n install edb-pgpool +``` + +Where xx is the version of EDB PbPool-II you are installing. From 7f4faca097a647ebf84dd0ebac702f2ba3eae51a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 23 May 2022 09:17:38 -0400 Subject: [PATCH 148/180] added generated extension topics for SLES for PgPool II --- install_template/config.yaml | 38 +++++++++++++++++++ ...gpoolii-extensions_4.3_sles-12_ppc64le.mdx | 6 +-- ...pgpoolii-extensions_4.3_sles-12_x86_64.mdx | 6 +-- ...gpoolii-extensions_4.3_sles-15_ppc64le.mdx | 6 +-- ...pgpoolii-extensions_4.3_sles-15_x86_64.mdx | 6 +-- .../edb-pgpoolii_4.3_sles-12_ppc64le.mdx | 2 +- .../edb-pgpoolii_4.3_sles-12_x86_64.mdx | 2 +- .../edb-pgpoolii_4.3_sles-15_ppc64le.mdx | 2 +- .../edb-pgpoolii_4.3_sles-15_x86_64.mdx | 2 +- .../almalinux-8-or-rocky-linux-8.njk | 10 +++++ .../products/edb-pgpoolii-extensions/base.njk | 8 ++++ .../edb-pgpoolii-extensions/centos-7.njk | 2 + .../centos-7_ppc64le.njk | 2 + .../edb-pgpoolii-extensions/debian-10.njk | 2 + .../edb-pgpoolii-extensions/debian-9.njk | 2 + .../rhel-7-or-ol-7.njk | 2 + .../rhel-7-or-ol-7_ppc64le.njk | 2 + .../rhel-8-or-ol-8.njk | 2 + .../edb-pgpoolii-extensions/sles-12.njk | 2 + .../sles-12_ppc64le.njk | 2 + .../edb-pgpoolii-extensions/sles-15.njk | 2 + .../sles-15_ppc64le.njk | 3 ++ .../edb-pgpoolii-extensions/ubuntu-18.04.njk | 1 + .../edb-pgpoolii-extensions/ubuntu-20.04.njk | 1 + product_docs/docs/.gitignore | 1 - 25 files changed, 97 insertions(+), 17 deletions(-) rename product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx => install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx (83%) rename product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx => install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx (83%) rename product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx => install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx (83%) rename product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx => install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx (83%) create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/almalinux-8-or-rocky-linux-8.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/base.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/centos-7.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/centos-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/debian-10.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/debian-9.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/rhel-8-or-ol-8.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/sles-12.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/sles-12_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/sles-15.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/sles-15_ppc64le.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/ubuntu-18.04.njk create mode 100644 install_template/templates/products/edb-pgpoolii-extensions/ubuntu-20.04.njk delete mode 100644 product_docs/docs/.gitignore diff --git a/install_template/config.yaml b/install_template/config.yaml index e3c5dfc6ce5..ea0ebda78dc 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -214,6 +214,44 @@ products: # supported versions: [4.0, 4.1, 4.2, 4.3] # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 12 + arch: x86_64 + supported versions: [4.3] + - name: SLES 12 + arch: ppc64le + supported versions: [4.3] + - name: SLES 15 + arch: x86_64 + supported versions: [4.3] + - name: SLES 15 + arch: ppc64le + supported versions: [4.3] + - name: EDB PgpoolII Extensions + platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 # supported versions: [4.0, 4.1, 4.2, 4.3] - name: SLES 12 arch: x86_64 diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx similarity index 83% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx rename to install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx index 7772f39de77..b052d32db4f 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 12 on ppc64le -title: Installing EDB PgpoolII on SLES 12 ppc64le +title: Installing EDB PgpoolII Extensions on SLES 12 ppc64le --- Before you begin the installation process, log in as superuser. @@ -39,7 +39,7 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-pgpool +zypper -n install edb-as--pgpool-extensions ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx similarity index 83% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx rename to install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx index ee6337d1431..977883c8f6b 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 12 on x86_64 -title: Installing EDB PgpoolII on SLES 12 x86_64 +title: Installing EDB PgpoolII Extensions on SLES 12 x86_64 --- Before you begin the installation process, log in as superuser. @@ -39,7 +39,7 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-pgpool +zypper -n install edb-as--pgpool-extensions ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx similarity index 83% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx rename to install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx index 525e2bd6c59..81eba526727 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 15 on ppc64le -title: Installing EDB PgpoolII on SLES 15 ppc64le +title: Installing EDB PgpoolII Extensions on SLES 15 ppc64le --- Before you begin the installation process, log in as superuser. @@ -38,7 +38,7 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-pgpool +zypper -n install edb-as--pgpool-extensions ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx similarity index 83% rename from product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx rename to install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx index 8d8b171b0b6..78a356fbcc9 100644 --- a/product_docs/docs/pgpool/4.3/01_installing_and_configuring_the_pgpool-II/edb-pgpoolii_4.3_sles-15_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx @@ -1,6 +1,6 @@ --- navTitle: SLES 15 on x86_64 -title: Installing EDB PgpoolII on SLES 15 x86_64 +title: Installing EDB PgpoolII Extensions on SLES 15 x86_64 --- Before you begin the installation process, log in as superuser. @@ -38,7 +38,7 @@ zypper refresh ## Install the package ```shell -zypper -n install edb-pgpool +zypper -n install edb-as--pgpool-extensions ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx index 7772f39de77..a52a27c624a 100644 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pgpool ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx index ee6337d1431..d76fa96d9a7 100644 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx @@ -42,4 +42,4 @@ zypper refresh zypper -n install edb-pgpool ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx index 525e2bd6c59..80666762166 100644 --- a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx +++ b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pgpool ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx index 8d8b171b0b6..bedca4bc740 100644 --- a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx +++ b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx @@ -41,4 +41,4 @@ zypper refresh zypper -n install edb-pgpool ``` -Where xx is the version of EDB PbPool-II you are installing. +Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/templates/products/edb-pgpoolii-extensions/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-pgpoolii-extensions/almalinux-8-or-rocky-linux-8.njk new file mode 100644 index 00000000000..73204b7cbc9 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/almalinux-8-or-rocky-linux-8.njk @@ -0,0 +1,10 @@ +{% extends "products/edb-pgpoolii/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/edb-pgpoolii-extensions/base.njk b/install_template/templates/products/edb-pgpoolii-extensions/base.njk new file mode 100644 index 00000000000..285e1946571 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/base.njk @@ -0,0 +1,8 @@ +{% extends "platformBase/" + platformBaseTemplate + '.njk' %} +{% set packageName %}edb-as--pgpool-extensions{% endset %} +{% block installCommand %} +```shell +zypper -n install {{ packageName }} +``` +Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. +{% endblock installCommand %} diff --git a/install_template/templates/products/edb-pgpoolii-extensions/centos-7.njk b/install_template/templates/products/edb-pgpoolii-extensions/centos-7.njk new file mode 100644 index 00000000000..9fd14588299 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/centos-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/centos-7_ppc64le.njk b/install_template/templates/products/edb-pgpoolii-extensions/centos-7_ppc64le.njk new file mode 100644 index 00000000000..64df7efa1f6 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/centos-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/centos-7.njk" %} +{% set includePPC = true %} diff --git a/install_template/templates/products/edb-pgpoolii-extensions/debian-10.njk b/install_template/templates/products/edb-pgpoolii-extensions/debian-10.njk new file mode 100644 index 00000000000..2683b56783c --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/debian-10.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/debian-9.njk b/install_template/templates/products/edb-pgpoolii-extensions/debian-9.njk new file mode 100644 index 00000000000..d9a545ef822 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/debian-9.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7.njk new file mode 100644 index 00000000000..27a7a010b8b --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7_ppc64le.njk new file mode 100644 index 00000000000..fe0a6ae2694 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/rhel-7-or-ol-7_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/rhel-7-or-ol-7.njk" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-pgpoolii-extensions/rhel-8-or-ol-8.njk new file mode 100644 index 00000000000..4f4a6e0124e --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/rhel-8-or-ol-8.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/sles-12.njk b/install_template/templates/products/edb-pgpoolii-extensions/sles-12.njk new file mode 100644 index 00000000000..d69e0701519 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/sles-12.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/sles-12_ppc64le.njk b/install_template/templates/products/edb-pgpoolii-extensions/sles-12_ppc64le.njk new file mode 100644 index 00000000000..d69e0701519 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/sles-12_ppc64le.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/sles-15.njk b/install_template/templates/products/edb-pgpoolii-extensions/sles-15.njk new file mode 100644 index 00000000000..da132b4e3ce --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/sles-15.njk @@ -0,0 +1,2 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/sles-15_ppc64le.njk b/install_template/templates/products/edb-pgpoolii-extensions/sles-15_ppc64le.njk new file mode 100644 index 00000000000..6550ff3a389 --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/sles-15_ppc64le.njk @@ -0,0 +1,3 @@ +{% extends "products/edb-pgpoolii-extensions/base.njk" %} +{% set platformBaseTemplate = "sles-15" %} +{% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-pgpoolii-extensions/ubuntu-18.04.njk b/install_template/templates/products/edb-pgpoolii-extensions/ubuntu-18.04.njk new file mode 100644 index 00000000000..9548753acca --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/ubuntu-18.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-pgpoolii-extensions/debian-10.njk" %} diff --git a/install_template/templates/products/edb-pgpoolii-extensions/ubuntu-20.04.njk b/install_template/templates/products/edb-pgpoolii-extensions/ubuntu-20.04.njk new file mode 100644 index 00000000000..9548753acca --- /dev/null +++ b/install_template/templates/products/edb-pgpoolii-extensions/ubuntu-20.04.njk @@ -0,0 +1 @@ +{% extends "products/edb-pgpoolii-extensions/debian-10.njk" %} diff --git a/product_docs/docs/.gitignore b/product_docs/docs/.gitignore deleted file mode 100644 index 6971327c529..00000000000 --- a/product_docs/docs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*/*/*.pdf From 59415baeabaf0760c3595fcf2c359d63d0d0ac70 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 31 May 2022 10:37:04 -0400 Subject: [PATCH 149/180] removed rendered files --- .../edb-pgbouncer_1.16_sles-12_ppc64le.mdx | 45 ------------------- .../edb-pgbouncer_1.16_sles-12_x86_64.mdx | 45 ------------------- .../edb-pgbouncer_1.16_sles-15_ppc64le.mdx | 44 ------------------ .../edb-pgbouncer_1.16_sles-15_x86_64.mdx | 44 ------------------ ...gpoolii-extensions_4.3_sles-12_ppc64le.mdx | 45 ------------------- ...pgpoolii-extensions_4.3_sles-12_x86_64.mdx | 45 ------------------- ...gpoolii-extensions_4.3_sles-15_ppc64le.mdx | 44 ------------------ ...pgpoolii-extensions_4.3_sles-15_x86_64.mdx | 44 ------------------ .../edb-pgpoolii_4.3_sles-12_ppc64le.mdx | 45 ------------------- .../edb-pgpoolii_4.3_sles-12_x86_64.mdx | 45 ------------------- .../edb-pgpoolii_4.3_sles-15_ppc64le.mdx | 44 ------------------ .../edb-pgpoolii_4.3_sles-15_x86_64.mdx | 44 ------------------ .../renders/postgis_14_sles-12_ppc64le.mdx | 45 ------------------- .../renders/postgis_14_sles-12_x86_64.mdx | 45 ------------------- .../renders/postgis_14_sles-15_ppc64le.mdx | 45 ------------------- .../renders/postgis_14_sles-15_x86_64.mdx | 45 ------------------- 16 files changed, 714 deletions(-) delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_sles-12_ppc64le.mdx delete mode 100644 install_template/renders/postgis_14_sles-12_x86_64.mdx delete mode 100644 install_template/renders/postgis_14_sles-15_ppc64le.mdx delete mode 100644 install_template/renders/postgis_14_sles-15_x86_64.mdx diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx deleted file mode 100644 index e73b5c9205b..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-12_ppc64le.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing EDB pgBouncer on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgbouncer -``` - -Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx deleted file mode 100644 index 2b9205bcb10..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-12_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing EDB pgBouncer on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgbouncer -``` - -Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx deleted file mode 100644 index bda8d2a9759..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-15_ppc64le.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing EDB pgBouncer on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgbouncer -``` - -Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx b/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx deleted file mode 100644 index ebba55a9753..00000000000 --- a/install_template/renders/edb-pgbouncer_1.16_sles-15_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing EDB pgBouncer on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgbouncer -``` - -Where `` is the version of EDB PgBouncer you are installing. diff --git a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx deleted file mode 100644 index b052d32db4f..00000000000 --- a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_ppc64le.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing EDB PgpoolII Extensions on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as--pgpool-extensions -``` - -Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx deleted file mode 100644 index 977883c8f6b..00000000000 --- a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-12_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing EDB PgpoolII Extensions on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as--pgpool-extensions -``` - -Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx deleted file mode 100644 index 81eba526727..00000000000 --- a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_ppc64le.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing EDB PgpoolII Extensions on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as--pgpool-extensions -``` - -Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx deleted file mode 100644 index 78a356fbcc9..00000000000 --- a/install_template/renders/edb-pgpoolii-extensions_4.3_sles-15_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing EDB PgpoolII Extensions on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as--pgpool-extensions -``` - -Where `` is the EDB Postgres Advanced Server version and `` is the EDB Pgpool-II version you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx deleted file mode 100644 index a52a27c624a..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_ppc64le.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing EDB PgpoolII on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgpool -``` - -Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx deleted file mode 100644 index d76fa96d9a7..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-12_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing EDB PgpoolII on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgpool -``` - -Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx deleted file mode 100644 index 80666762166..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-15_ppc64le.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing EDB PgpoolII on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgpool -``` - -Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx b/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx deleted file mode 100644 index bedca4bc740..00000000000 --- a/install_template/renders/edb-pgpoolii_4.3_sles-15_x86_64.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing EDB PgpoolII on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-pgpool -``` - -Where `` is the version of EDB PbPool-II you are installing. diff --git a/install_template/renders/postgis_14_sles-12_ppc64le.mdx b/install_template/renders/postgis_14_sles-12_ppc64le.mdx deleted file mode 100644 index 2cfd8be246c..00000000000 --- a/install_template/renders/postgis_14_sles-12_ppc64le.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on ppc64le -title: Installing PostGIS on SLES 12 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/ppc64le -SUSEConnect -p sle-sdk/12.5/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as-postgis3 -``` - -Where `` is the version of PostGIS 3 you are installing. diff --git a/install_template/renders/postgis_14_sles-12_x86_64.mdx b/install_template/renders/postgis_14_sles-12_x86_64.mdx deleted file mode 100644 index b84da02a4f8..00000000000 --- a/install_template/renders/postgis_14_sles-12_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 12 on x86_64 -title: Installing PostGIS on SLES 12 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p PackageHub/12.5/x86_64 -SUSEConnect -p sle-sdk/12.5/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as-postgis3 -``` - -Where `` is the version of PostGIS 3 you are installing. diff --git a/install_template/renders/postgis_14_sles-15_ppc64le.mdx b/install_template/renders/postgis_14_sles-15_ppc64le.mdx deleted file mode 100644 index f98e2dacdae..00000000000 --- a/install_template/renders/postgis_14_sles-15_ppc64le.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 15 on ppc64le -title: Installing PostGIS on SLES 15 ppc64le ---- - -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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p sle-module-desktop-applications/15.3/ppc64le -SUSEConnect -d -p sle-module-development-tools/15.3/ppc64le - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as-postgis3 -``` - -Where `` is the version of PostGIS 3 you are installing. diff --git a/install_template/renders/postgis_14_sles-15_x86_64.mdx b/install_template/renders/postgis_14_sles-15_x86_64.mdx deleted file mode 100644 index 2251e135bfb..00000000000 --- a/install_template/renders/postgis_14_sles-15_x86_64.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -navTitle: SLES 15 on x86_64 -title: Installing PostGIS on SLES 15 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 -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE modules -SUSEConnect -p sle-module-desktop-applications/15.3/x86_64 -SUSEConnect -d -p sle-module-development-tools/15.3/x86_64 - -# Refresh the metadata -zypper refresh -``` - -## Install the package - -```shell -zypper -n install edb-as-postgis3 -``` - -Where `` is the version of PostGIS 3 you are installing. From 2ad9e7dd4e1a972166bdc29563df4c9aea1ea5fa Mon Sep 17 00:00:00 2001 From: root Date: Tue, 31 May 2022 19:48:13 +0000 Subject: [PATCH 150/180] restore inadvertently deleted file --- product_docs/docs/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 product_docs/docs/.gitignore diff --git a/product_docs/docs/.gitignore b/product_docs/docs/.gitignore new file mode 100644 index 00000000000..6971327c529 --- /dev/null +++ b/product_docs/docs/.gitignore @@ -0,0 +1 @@ +*/*/*.pdf From d69489bb977d7941ebc749e6e197faae2056c86b Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 1 Jun 2022 09:50:03 -0400 Subject: [PATCH 151/180] Modifications to reflect correct use of activateSUSEmodule capability --- install_template/templates/products/postgis/sles-15.njk | 4 ---- .../templates/products/postgis/sles-15_ppc64le.njk | 4 ---- 2 files changed, 8 deletions(-) diff --git a/install_template/templates/products/postgis/sles-15.njk b/install_template/templates/products/postgis/sles-15.njk index 512bd391287..08bbced44ac 100644 --- a/install_template/templates/products/postgis/sles-15.njk +++ b/install_template/templates/products/postgis/sles-15.njk @@ -1,6 +1,2 @@ {% extends "products/postgis/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{%- block activateSUSEmodule %} -SUSEConnect -p sle-module-desktop-applications/15.3/{{ platform.arch }} -SUSEConnect -d -p sle-module-development-tools/15.3/{{ platform.arch }} -{% endblock activateSUSEmodule %} \ No newline at end of file diff --git a/install_template/templates/products/postgis/sles-15_ppc64le.njk b/install_template/templates/products/postgis/sles-15_ppc64le.njk index d43c7edd9f2..a407d728ddb 100644 --- a/install_template/templates/products/postgis/sles-15_ppc64le.njk +++ b/install_template/templates/products/postgis/sles-15_ppc64le.njk @@ -1,7 +1,3 @@ {% extends "products/postgis/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set includePPC = true %} -{%- block activateSUSEmodule %} -SUSEConnect -p sle-module-desktop-applications/15.3/{{ platform.arch }} -SUSEConnect -d -p sle-module-development-tools/15.3/{{ platform.arch }} -{% endblock activateSUSEmodule %} \ No newline at end of file From 3f0a49cc63d91530323701c8108a6886de488586 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 31 May 2022 18:46:11 +0000 Subject: [PATCH 152/180] restore David's change from merge --- install_template/config.yaml | 808 +++++++++++++++++------------------ 1 file changed, 402 insertions(+), 406 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index ea0ebda78dc..bcb275a94fe 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -10,7 +10,7 @@ products: # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 # supported versions: [42.x.x] - # - name: RHEL 7 or OL 7 + # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [42.x.x] # - name: RHEL 7 or OL 7 @@ -25,56 +25,56 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [42.x.x] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [42.x.x] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [42.x.x] - name: Migration Toolkit platforms: -# - name: RHEL 8 or OL 8 -# arch: x86_64 -# supported versions: [55] -# - name: AlmaLinux 8 or Rocky Linux 8 -# arch: x86_64 -# supported versions: [55] -# - name: RHEL 7 or OL 7 -# arch: x86_64 -# supported versions: [55] -# - name: CentOS 7 -# arch: x86_64 -# supported versions: [55] - - name: SLES 15 - arch: x86_64 - supported versions: [55] - - name: SLES 12 - arch: ppc64le - supported versions: [55] -# - name: Ubuntu 20.04 or Debian 10 -# arch: x86_64 -# supported versions: [55] -# - name: Ubuntu 18.04 or Debian 9 -# arch: x86_64 -# supported versions: [55] -# - name: RHEL 8 or OL 8 -# arch: ppc64le -# supported versions: [55] -# - name: RHEL 7 or OL 7 -# arch: ppc64le -# supported versions: [55] - - name: SLES 15 - arch: ppc64le - supported versions: [55] - - name: SLES 12 - arch: x86_64 - supported versions: [55] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [55] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [55] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [55] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [55] + - name: SLES 15 + arch: x86_64 + supported versions: [55] + - name: SLES 12 + arch: ppc64le + supported versions: [55] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [55] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [55] + # - name: RHEL 8 or OL 8 + # arch: ppc64le + # supported versions: [55] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [55] + - name: SLES 15 + arch: ppc64le + supported versions: [55] + - name: SLES 12 + arch: x86_64 + supported versions: [55] # - name: EDB OCI Connector # platforms: # - name: CentOS 7 @@ -86,7 +86,7 @@ products: # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 # supported versions: [14.1.0.1] - # - name: RHEL 7 or OL 7 + # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [14.1.0.1] # - name: RHEL 7 or OL 7 @@ -101,18 +101,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [14.1.0.1] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14.1.0.1] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14.1.0.1] # - name: EDB ODBC Connector # platforms: # - name: CentOS 7 @@ -124,7 +124,7 @@ products: # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 # supported versions: [13.1.0.2] - # - name: RHEL 7 or OL 7 + # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [13.1.0.2] # - name: RHEL 7 or OL 7 @@ -139,132 +139,132 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [13.1.0.2] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [13.1.0.2] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [13.1.0.2] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [13.1.0.2] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [13.1.0.2] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [13.1.0.2] - name: EDB pgBouncer platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [1.14, 1.15, 1.16] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [1.14, 1.15, 1.16] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - - name: SLES 12 - arch: x86_64 - supported versions: [1.16] - - name: SLES 12 - arch: ppc64le - supported versions: [1.16] - - name: SLES 15 - arch: x86_64 - supported versions: [1.16] - - name: SLES 15 - arch: ppc64le - supported versions: [1.16] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [1.14, 1.15, 1.16] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [1.14, 1.15, 1.16] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [1.14, 1.15, 1.16] + - name: SLES 12 + arch: x86_64 + supported versions: [1.16] + - name: SLES 12 + arch: ppc64le + supported versions: [1.16] + - name: SLES 15 + arch: x86_64 + supported versions: [1.16] + - name: SLES 15 + arch: ppc64le + supported versions: [1.16] - name: EDB PgpoolII platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - - name: SLES 12 - arch: x86_64 - supported versions: [4.3] - - name: SLES 12 - arch: ppc64le - supported versions: [4.3] - - name: SLES 15 - arch: x86_64 - supported versions: [4.3] - - name: SLES 15 - arch: ppc64le - supported versions: [4.3] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 12 + arch: x86_64 + supported versions: [4.3] + - name: SLES 12 + arch: ppc64le + supported versions: [4.3] + - name: SLES 15 + arch: x86_64 + supported versions: [4.3] + - name: SLES 15 + arch: ppc64le + supported versions: [4.3] - name: EDB PgpoolII Extensions platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - - name: SLES 12 - arch: x86_64 - supported versions: [4.3] - - name: SLES 12 - arch: ppc64le - supported versions: [4.3] - - name: SLES 15 - arch: x86_64 - supported versions: [4.3] - - name: SLES 15 - arch: ppc64le - supported versions: [4.3] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [4.0, 4.1, 4.2, 4.3] + - name: SLES 12 + arch: x86_64 + supported versions: [4.3] + - name: SLES 12 + arch: ppc64le + supported versions: [4.3] + - name: SLES 15 + arch: x86_64 + supported versions: [4.3] + - name: SLES 15 + arch: ppc64le + supported versions: [4.3] # - name: EDB Postgres Advanced Server # platforms: # - name: CentOS 7 @@ -276,7 +276,7 @@ products: # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 + # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [9.6, 10, 11, 12, 13, 14] # - name: RHEL 7 or OL 7 @@ -297,18 +297,18 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] # - name: EDB*Plus # platforms: # - name: CentOS 7 @@ -320,7 +320,7 @@ products: # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] - # - name: RHEL 7 or OL 7 + # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] # - name: RHEL 7 or OL 7 @@ -335,208 +335,208 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + # - name: SLES 12 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [14] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [14] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [14] - name: Failover Manager platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - - name: SLES 12 - arch: x86_64 - supported versions: [4.4] - - name: SLES 12 - arch: ppc64le - supported versions: [4.4] - - name: SLES 15 - arch: x86_64 - supported versions: [4.4] - - name: SLES 15 - arch: ppc64le - supported versions: [4.4] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: SLES 12 + arch: x86_64 + supported versions: [4.4] + - name: SLES 12 + arch: ppc64le + supported versions: [4.4] + - name: SLES 15 + arch: x86_64 + supported versions: [4.4] + - name: SLES 15 + arch: ppc64le + supported versions: [4.4] - name: Hadoop Foreign Data Wrapper platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [14] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] - name: MongoDB Foreign Data Wrapper platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] - name: MySQL Foreign Data Wrapper platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] - name: PostGIS platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - - name: SLES 12 - arch: x86_64 - supported versions: [14] - - name: SLES 12 - arch: ppc64le - supported versions: [14] - - name: SLES 15 - arch: x86_64 - supported versions: [14] - - name: SLES 15 - arch: ppc64le - supported versions: [14] + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [11, 12, 13, 14] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] # - name: Postgres Enterprise Manager # platforms: # - name: CentOS 7 @@ -548,7 +548,7 @@ products: # - name: AlmaLinux 8 or Rocky Linux 8 # arch: x86_64 # supported versions: [7, 8] - # - name: RHEL 7 or OL 7 + # - name: RHEL 7 or OL 7 # arch: x86_64 # supported versions: [7, 8] # - name: RHEL 7 or OL 7 @@ -563,19 +563,15 @@ products: # - name: Ubuntu 20.04 or Debian 10 # arch: x86_64 # supported versions: [7, 8] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [8] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [8] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [8] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [8] - - - - + # - name: SLES 12 + # arch: x86_64 + # supported versions: [8] + # - name: SLES 15 + # arch: x86_64 + # supported versions: [8] + # - name: SLES 12 + # arch: ppc64le + # supported versions: [8] + # - name: SLES 15 + # arch: ppc64le + # supported versions: [8] From 812e82b66a5ea908e728daeac3d2cbe72894cb80 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 1 Jun 2022 09:19:02 -0400 Subject: [PATCH 153/180] Revised templates for OCI to include use of activateSUSEmodule capability --- .../products/edb-oci-connector/sles-12.njk | 23 +---------------- .../edb-oci-connector/sles-12_ppc64le.njk | 23 +---------------- .../products/edb-oci-connector/sles-15.njk | 25 +------------------ .../edb-oci-connector/sles-15_ppc64le.njk | 25 +------------------ 4 files changed, 4 insertions(+), 92 deletions(-) diff --git a/install_template/templates/products/edb-oci-connector/sles-12.njk b/install_template/templates/products/edb-oci-connector/sles-12.njk index aecce8fe6d3..a5923e3947f 100644 --- a/install_template/templates/products/edb-oci-connector/sles-12.njk +++ b/install_template/templates/products/edb-oci-connector/sles-12.njk @@ -1,23 +1,2 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh -``` - -{% endblock prerequisites %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk index aecce8fe6d3..a5923e3947f 100644 --- a/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk +++ b/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk @@ -1,23 +1,2 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "sles-12" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' -SUSEConnect -p PackageHub/12.5/{{ platform.arch }} -SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} - -# Refresh the metadata -zypper refresh -``` - -{% endblock prerequisites %} \ No newline at end of file +{% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-15.njk b/install_template/templates/products/edb-oci-connector/sles-15.njk index 07a8c9a03fc..d5560509e3e 100644 --- a/install_template/templates/products/edb-oci-connector/sles-15.njk +++ b/install_template/templates/products/edb-oci-connector/sles-15.njk @@ -1,25 +1,2 @@ {% extends "products/edb-oci-connector/base.njk" %} -{% set platformBaseTemplate = "sles-15" %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/{{ platform.arch }} - -# Refresh the metadata -zypper refresh -``` -{% endblock prerequisites %} \ No newline at end of file +{% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk b/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk index 562fd376a81..64f2ec5cbf3 100644 --- a/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk +++ b/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk @@ -1,26 +1,3 @@ {% extends "products/edb-oci-connector/base.njk" %} {% set platformBaseTemplate = "sles-15" %} -{% set includePPC = true %} -{% block prerequisites %} -Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module -SUSEConnect -p PackageHub/15.3/{{ platform.arch }} - -# Refresh the metadata -zypper refresh -``` -{% endblock prerequisites %} \ No newline at end of file +{% set includePPC = true %} \ No newline at end of file From c5e0988420b30b681e6de037ff04a14637dc32c2 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Fri, 3 Jun 2022 10:11:52 -0400 Subject: [PATCH 154/180] replicated changes from defunct EDBPlus branch --- .../templates/platformBase/sles-15.njk | 32 +------------------ .../templates/products/edb*plus/base.njk | 4 +-- 2 files changed, 2 insertions(+), 34 deletions(-) diff --git a/install_template/templates/platformBase/sles-15.njk b/install_template/templates/platformBase/sles-15.njk index 7caec53052a..198b9583ee0 100644 --- a/install_template/templates/platformBase/sles-15.njk +++ b/install_template/templates/platformBase/sles-15.njk @@ -1,35 +1,5 @@ -{% extends "platformBase/base.njk" %} -{% block prerequisites %} -```shell -# Install the repository configuration and enter your EDB repository -# credentials when prompted -zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo - -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories -zypper install SUSEConnect - -# Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information -SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' - -# Activate the required SUSE module +{% extends "platformBase/sles-12.njk" %} {% block activateSUSEmodule %} SUSEConnect -p PackageHub/15.3/{{ platform.arch }} {% endblock activateSUSEmodule %} -# Refresh the metadata -zypper refresh -``` -{% endblock prerequisites %} - -{% block installCommand %} -```shell -zypper -n install {{ packageName }} -``` -{% endblock installCommand %} - - - - diff --git a/install_template/templates/products/edb*plus/base.njk b/install_template/templates/products/edb*plus/base.njk index f47939b6f13..9ba2ca1c79e 100644 --- a/install_template/templates/products/edb*plus/base.njk +++ b/install_template/templates/products/edb*plus/base.njk @@ -75,8 +75,6 @@ Then, open the `pg_hba.conf` file and modify the `IDENT` entries: `host all all ::1/128 ident map=edbas` -You must restart the Advanced Server service before invoking EDB\*Plus. For detailed information about controlling the Advanced Server service, see the *EDB Postgres Advanced Server Installation Guide*, available at: - -[https://www.enterprisedb.com/docs](/epas/latest/) +You must restart the Advanced Server service before invoking EDB\*Plus. For detailed information about controlling the Advanced Server service, see the online documentation for [EDB Postgres Advanced Server](/epas/latest/). {% endblock postinstall %} \ No newline at end of file From 9f0752cd91e68f2b7302c15986377eff9f430510 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 6 Jun 2022 11:21:53 -0400 Subject: [PATCH 155/180] Updated Initial Config section Added information for Ubuntu and SLES Added packageManager variable to all operating systems modified initial config for EDB*Plus to use variable --- .../almalinux-8-or-rocky-linux-8.njk | 1 + .../templates/platformBase/centos-7.njk | 1 + .../templates/platformBase/rhel-7-or-ol-7.njk | 2 +- .../platformBase/rhel-8-ol-8-old.njk | 31 ------------------- .../templates/platformBase/rhel-8-or-ol-8.njk | 1 + .../templates/platformBase/sles-12.njk | 1 + .../ubuntu-20.04-or-debian-10.njk | 2 +- .../templates/products/edb*plus/base.njk | 16 +++------- 8 files changed, 10 insertions(+), 45 deletions(-) delete mode 100644 install_template/templates/platformBase/rhel-8-ol-8-old.njk diff --git a/install_template/templates/platformBase/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/platformBase/almalinux-8-or-rocky-linux-8.njk index 72f7ac25601..72de23b465d 100644 --- a/install_template/templates/platformBase/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/platformBase/almalinux-8-or-rocky-linux-8.njk @@ -1,5 +1,6 @@ {% extends "platformBase/base.njk" %} {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} +{% set packageManager = "dnf" %} {% block prerequisites %} {{ centosRepositoryConfiguration("dnf", "epel-release") }} ```shell diff --git a/install_template/templates/platformBase/centos-7.njk b/install_template/templates/platformBase/centos-7.njk index fa9517fc626..1ffd4be8d33 100644 --- a/install_template/templates/platformBase/centos-7.njk +++ b/install_template/templates/platformBase/centos-7.njk @@ -1,5 +1,6 @@ {% extends "platformBase/base.njk" %} {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} +{% set packageManager = "yum" %} {% block prerequisites %} {% if includePPC %} # Install Advance Toolchain diff --git a/install_template/templates/platformBase/rhel-7-or-ol-7.njk b/install_template/templates/platformBase/rhel-7-or-ol-7.njk index b547731eb29..b37a619c11b 100644 --- a/install_template/templates/platformBase/rhel-7-or-ol-7.njk +++ b/install_template/templates/platformBase/rhel-7-or-ol-7.njk @@ -1,5 +1,5 @@ {% extends "platformBase/centos-7.njk" %} - +{% set packageManager = "yum" %} {% block prerequisites %} {{ super() }} ```shell diff --git a/install_template/templates/platformBase/rhel-8-ol-8-old.njk b/install_template/templates/platformBase/rhel-8-ol-8-old.njk deleted file mode 100644 index dc2c08f31b5..00000000000 --- a/install_template/templates/platformBase/rhel-8-ol-8-old.njk +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "platformBase/base.njk" %} -{% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} -{% block prerequisites %} -{{ centosRepositoryConfiguration("dnf", "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm") }} -1. The EPEL packages may depend on packages from other repositories, to download the packages enable the platform-specific repositories. - -- For RHEL, the `codeready-builder-for-rhel-8-*-rpms` repository: - - ```shell - ARCH=$( /bin/arch ) - subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" - ``` -- For CentOS, the `powertools` repository: - - ```shell - dnf config-manager --set-enabled powertools - ``` - -1. Disable the built-in PostgreSQL module: - - ```shell - dnf -qy module disable postgresql - ``` -{% endblock prerequisites %} -{% block installCommand %} -```shell -{{ centosInstallCommand("dnf", packageName) }} -``` -!!! Note - Once the edb repository is set up, you can install any of the EDB products by using the relevant package name at this step. You can use `dnf list available` command to check the available packages. -{% endblock installCommand %} diff --git a/install_template/templates/platformBase/rhel-8-or-ol-8.njk b/install_template/templates/platformBase/rhel-8-or-ol-8.njk index f93689be890..efa92edea7d 100644 --- a/install_template/templates/platformBase/rhel-8-or-ol-8.njk +++ b/install_template/templates/platformBase/rhel-8-or-ol-8.njk @@ -1,5 +1,6 @@ {% extends "platformBase/base.njk" %} {% from "platformBase/_shared.njk" import centosRepositoryConfiguration, centosInstallCommand %} +{% set packageManager = "dnf" %} {% block prerequisites %} {{ centosRepositoryConfiguration("dnf", "https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm") }} ```shell diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index fc0a8666a09..228c9a4e9de 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -1,4 +1,5 @@ {% extends "platformBase/base.njk" %} +{% set packageManager = "zypper" %} {% block prerequisites %} ```shell # Install the repository configuration and enter your EDB repository diff --git a/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk b/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk index 0cc91aff738..739df99ee8e 100644 --- a/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk +++ b/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk @@ -1,5 +1,5 @@ {% extends "platformBase/base.njk" %} - +{% set packageManager = "apt-get" %} {% block prerequisites %} {% block repoAuth %} # Setup the EDB repository diff --git a/install_template/templates/products/edb*plus/base.njk b/install_template/templates/products/edb*plus/base.njk index 9ba2ca1c79e..12c7338ce76 100644 --- a/install_template/templates/products/edb*plus/base.njk +++ b/install_template/templates/products/edb*plus/base.njk @@ -13,19 +13,11 @@ export PATH=/bin:$PATH By default, the `pg_hba.conf` file for the RPM installer enforces `IDENT` authentication. Before invoking EDB\*Plus, you must either modify the `pg_hba.conf` file, changing the authentication method to a form other than `IDENT` (and restarting the server), or perform the following steps to ensure that an `IDENT` server is accessible: -You must confirm that an `identd` server is installed and running. You can use the `yum` package manager to install an `identd` server by invoking the command: +You must confirm that an `identd` server is installed and running. You can use the package manager to install an `identd` server by invoking the command: -- On RHEL or CentOS 7: - - ```text - yum -y install xinetd authd - ``` - -- On RHEL/Rocky Linux/AlmaLinux 8: - - ```text - dnf -y install xinetd authd - ``` +```text +{{ packageManager }} -y install xinetd authd +``` The command should create a file named `/etc/xinetd.d/auth` that contains: From 0feff00efae6794e13088ab334197129b0f489bd Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 7 Jun 2022 11:50:20 -0400 Subject: [PATCH 156/180] First steps to templatizing Debian Ubuntu --- .../templates/platformBase/ubuntu-20.04-or-debian-10.njk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk b/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk index 739df99ee8e..01a843f35d1 100644 --- a/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk +++ b/install_template/templates/platformBase/ubuntu-20.04-or-debian-10.njk @@ -2,8 +2,8 @@ {% set packageManager = "apt-get" %} {% block prerequisites %} {% block repoAuth %} -# Setup the EDB repository ```shell +# Setup the EDB repository echo "deb [arch=amd64] https://apt.enterprisedb.com/$(lsb_release -cs)-edb/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/edb-$(lsb_release -cs).list # Replace '' and '' below with your username and password for the EDB repositories: @@ -13,10 +13,10 @@ echo "machine apt.enterprisedb.com login password " > /etc/ # Add support for secure APT repositories: apt-get -y install apt-transport-https -# Replace '':'' with your repository username and password available from your [EDB account](https://www.enterprisedb.com/user) and add the EDB signing key: +# Add the EDB signing key: wget -q -O - https://:@apt.enterprisedb.com/edb-deb.gpg.key | sudo apt-key add - -# Update the repository meta data: +# Update the repository metadata: apt-get update ``` {% endblock prerequisites %} From dead106b6fa262a5cb68005617c65bff4a0b5141 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 18 May 2022 11:47:51 -0400 Subject: [PATCH 157/180] Changes to test generated output for connector products Includes a few small changes to product docs. Products affected at JDBC, OCL, and ODBC --- .../11_eprs_sles15_ppcle.mdx | 34 ++++++++++++------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx b/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx index 2f6b0225fa5..618f0f41edd 100644 --- a/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx +++ b/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx @@ -1,14 +1,14 @@ --- +<<<<<<< HEAD:product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx title: "Installing Replication Server on SLES 15 IBM Power (ppc64le)" navTitle: "SLES 15" +======= +navTitle: SLES 15 on ppc64le +title: Installing EDB OCI Connector on SLES 15 ppc64le +>>>>>>> c95667644 (Changes to test generated output for connector products):install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx --- -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. +Before you begin the installation process, log in as superuser. To log in as a superuser: @@ -16,24 +16,28 @@ To log in as a superuser: sudo su - ``` -Before setting up the repository, you need to register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). +## Set up the repository +<<<<<<< HEAD:product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx ## 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). +>>>>>>> c95667644 (Changes to test generated output for connector products):install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. ```shell -# Install the repository configuration and enter your EDB repository +# Install the repository configuration and enter your EDB repository # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Install SUSEConnect to register the host with SUSE, allowing access to -# SUSE repositories +# Install SUSEConnect to register the host with SUSE, allowing access +# to SUSE repositories zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration -# information +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE +# registration information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module @@ -44,6 +48,7 @@ zypper refresh ``` ## Install the package +<<<<<<< HEAD:product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx You can install all Replication Server components with a single install command, or you may choose to install selected, individual components by installing only those particular packages. @@ -57,6 +62,11 @@ To install an individual component: ```shell dnf install package_name +======= + +```shell +zypper -n install edb-oci +>>>>>>> c95667644 (Changes to test generated output for connector products):install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx ``` Where `package_name` is: From 5344a151b5f901412a09d605ce904b9b724a278f Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Thu, 2 Jun 2022 15:59:22 -0700 Subject: [PATCH 158/180] Create a deploy script for install guides --- install_template/deploy.mjs | 172 ++++++++++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 install_template/deploy.mjs diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs new file mode 100644 index 00000000000..aec0565a4b8 --- /dev/null +++ b/install_template/deploy.mjs @@ -0,0 +1,172 @@ +import fs from "fs/promises"; +import { existsSync as fileExists } from "fs"; +import path from "path"; +import nunjucks from "nunjucks"; +import prettier from "prettier"; +import yaml from "yaml"; + +nunjucks.configure("templates", { throwOnUndefined: true, autoescape: false }); + +/** + * Loop through the config.yaml file and generate docs for every product/platform/supported version combination found. + * @returns void + */ +const run = async () => { + const config = yaml.parse(await fs.readFile("config.yaml", "utf8")); + + config.products.forEach((product) => { + product.platforms.forEach((platform) => { + platform["supported versions"].forEach((version) => { + moveDoc(product, platform, version); + }); + }); + }); + + return; +}; + +/** + * Composes the code needed to copy a document for a product/platform/version combination. + * @param product The product name we are generating a template for + * @param platform The platform and architecture we are generating docs for (e.g. { name: Centos 7, arch: x86_64 }) + * @param version The version of the product to generate docs for + * @returns void + */ +const moveDoc = (product, platform, version) => { +/* + console.log( + `Copying install guide for ${product.name} ${version} on ${platform.name} ${platform.arch}`, + ); +*/ + + const context = generateContext(product, platform, version); + + const filename = + [ + formatStringForFile(context.product.name), + context.product.version, + formatStringForFile(context.platform.name), + context.platform.arch, + ].join("_") + ".mdx"; + + /*console.log(` copying ${filename}`);*/ + + const prefix = { + rhel_8_x86_64: "01", + other_linux8_x86_64: "02", + rhel_7_x86_64: "03", + centos_7_x86_64: "04", + sles_15_x86_64: "05", + sles_12_x86_64: "06", + ubuntu_20_deb10_x86_64: "07", + ubuntu_18_deb9_x86_64: "08", + rhel_8_ppc64le: "09", + rhel_7_ppc64le: "10", + sles_15_ppc64le: "11", + sles_12_ppc64le: "12", + }; + + const abrev_product = { + "failover-manager": "efm", + "migration-toolkit": "mtk", + "hadoop-foreign-data-wrapper": "hadoop", + "mongodb-foreign-data-wrapper": "mongo", + "mysql-foreign-data-wrapper": "mysql", + "edb-pgpoolii": "pgpool", + "edb-pgpoolii-extensions": "pgpool_extensions", + "postgis": "postgis", + "edb-jdbc-connector": "jdbc_connector", + "edb-oci-connector": "oci_connector", + "edb-odbc-connector": "odbc_connector", + "edb-pgbouncer": "pgbouncer", + + + }; + + + if (abrev_product[formatStringForFile(context.product.name)] == null){ + console.error( + `[ERROR] product abbreviation missing\n` + + formatStringForFile(context.product.name)); + } + + const expand_arch = { + ppcle: "ibm_power_ppc64le", + x86: "x86_amd64", + x86_64: "x86_amd64", + ppc64le: "ibm_power_pcc64le", + }; + + const plat = [ + context.platform.name.toLowerCase().replace(/ /g, "_"), + context.platform.arch, + ].join("_"); + + const dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[formatStringForFile(context.product.name)], + context.product.version.toString().replace(/\..*/, ""), + [ + "03_installing", + abrev_product[formatStringForFile(context.product.name)], + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + const file = + [ + prefix[plat], + abrev_product[formatStringForFile(context.product.name)]+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + + console.log(`renders/${filename} ${dirpath}/${file}`); +}; + + +/** + * Format a string into the format expected when used in file or folder names. + * Converts a string to lowercase, and replaces all spaces with dashes + * @param string + * @returns a string formatted for file names + */ +const formatStringForFile = (string) => { + return string.toLowerCase().replace(/ /g, "-"); +}; + +/** + * Creates a filename based on the filenameParts passed in, and appends to to a base path + * @param basePath A file path formatted string which will be used as a prefix to the generated filename. e.g "products/product-name/" + * @param filenameParts An array of strings to combine into a template name. e.g. ["first-part", "second", "last-part"] + * @returns A file path which refers to the expected location of a nunjucks template, with each filename part seperated by an underscore. + * e.g. "products/product-name/first-part_second_last-part.njk" + */ +const constructTemplatePath = (basePath, filenameParts) => { + return path.join(basePath, filenameParts.join("_") + ".njk"); +}; + +/** + * Creates the context object used by nunjucks templates + * @param product The product to render docs for, from the config. + * @param platform The platform to render docs for, from the config. + * @param version The version of the product to render docs for + * @returns a context object. + */ +const generateContext = (product, platform, version) => { + return { + product: { + name: product.name, + version: version, + }, + platform: { + name: platform.name, + arch: platform.arch, + }, + }; +}; + + +run(); From 71596208eafc04c8dd78e7bf1879a92b2ba985d7 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Thu, 2 Jun 2022 21:45:02 -0700 Subject: [PATCH 159/180] Add a bunch more products --- install_template/deploy.mjs | 216 +++++++++++++++++++++++++++++++----- 1 file changed, 190 insertions(+), 26 deletions(-) diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index aec0565a4b8..36e6e3b5f6f 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -41,9 +41,11 @@ const moveDoc = (product, platform, version) => { const context = generateContext(product, platform, version); + const product_stub = formatStringForFile(context.product.name) + const filename = [ - formatStringForFile(context.product.name), + product_stub, context.product.version, formatStringForFile(context.platform.name), context.platform.arch, @@ -76,7 +78,7 @@ const moveDoc = (product, platform, version) => { "edb-pgpoolii-extensions": "pgpool_extensions", "postgis": "postgis", "edb-jdbc-connector": "jdbc_connector", - "edb-oci-connector": "oci_connector", + "edb-oci-connector": "ocl_connector", "edb-odbc-connector": "odbc_connector", "edb-pgbouncer": "pgbouncer", @@ -84,17 +86,17 @@ const moveDoc = (product, platform, version) => { }; - if (abrev_product[formatStringForFile(context.product.name)] == null){ + if (abrev_product[product_stub] == null){ console.error( `[ERROR] product abbreviation missing\n` + - formatStringForFile(context.product.name)); + product_stub); } const expand_arch = { ppcle: "ibm_power_ppc64le", x86: "x86_amd64", x86_64: "x86_amd64", - ppc64le: "ibm_power_pcc64le", + ppc64le: "ibm_power_ppc64le", }; const plat = [ @@ -102,28 +104,190 @@ const moveDoc = (product, platform, version) => { context.platform.arch, ].join("_"); - const dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[formatStringForFile(context.product.name)], - context.product.version.toString().replace(/\..*/, ""), - [ - "03_installing", - abrev_product[formatStringForFile(context.product.name)], - ].join("_"), - expand_arch[context.platform.arch], - ].join("/"); - - const file = - [ - prefix[plat], - abrev_product[formatStringForFile(context.product.name)]+ context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; + const product_prefix = { + "failover-manager": "03", + "migration-toolkit": "05", + "hadoop-foreign-data-wrapper": "05", + "mongodb-foreign-data-wrapper": "04", + "mysql-foreign-data-wrapper": "04", + "edb-pgpoolii": "01", + "edb-pgpoolii-extensions": "pgpool_extensions", + "postgis": "01a", + "edb-jdbc-connector": "04", + "edb-oci-connector": "ocl_connector", + "edb-odbc-connector": "03", + "edb-pgbouncer": "01", + + + }; + + var dirpath; + var file; + + + switch (product_stub) { + /* Products that don't have an install_on_linux layer */ + case "failover-manager": + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + /* Products that don't abreviate in the directory */ + case "migration-toolkit": + dirpath = [ + "..", + "product_docs", + "docs", + context.product.name.toLowerCase().replace(/ /g, '_'), + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + "install_on_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + /* Data wrappers */ + case "hadoop-foreign-data-wrapper": + case "mongodb-foreign-data-wrapper": + case "mysql-foreign-data-wrapper": + prefix["sles_12_x86"]="07"; + prefix["sles_12_x86_64"]="07"; + prefix["rhel_8_ppc64le"]="13"; + prefix["rhel_7_ppc64le"]="15"; + prefix["sles_12_ppc64le"]="19"; + prefix["sles_15_ppc64le"]="17"; + + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_data_adapter", + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing_the", + abrev_product[product_stub], + "data_adapter" + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + case "edb-pgpoolii": + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version, + [ + product_prefix[product_stub], + "installing_and_configuring_the", + abrev_product[product_stub]+"-II", + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + case "postgis": + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version, + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + "installing_on_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + default: + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + "install_on_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + } - console.log(`renders/${filename} ${dirpath}/${file}`); + console.log(`renders/${filename} ${dirpath}/${file}`); }; From 81c5e250a2b1513fbd26ee71ca74354eb824e826 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Fri, 3 Jun 2022 10:14:48 -0700 Subject: [PATCH 160/180] OCI -> OCL and other products added --- install_template/config.yaml | 192 +++++++----------- install_template/deploy.mjs | 85 +++++++- .../almalinux-8-or-rocky-linux-8.njk | 0 .../base.njk | 0 .../centos-7.njk | 0 .../centos-7_ppc64le.njk | 0 .../debian-10.njk | 0 .../debian-9.njk | 0 .../rhel-7-or-ol-7.njk | 0 .../rhel-7-or-ol-7_ppc64le.njk | 0 .../rhel-8-or-ol-8.njk | 0 .../sles-12.njk | 0 .../sles-12_ppc64le.njk | 0 .../sles-15.njk | 0 .../sles-15_ppc64le.njk | 0 .../ubuntu-18.04.njk | 0 .../ubuntu-20.04.njk | 0 17 files changed, 158 insertions(+), 119 deletions(-) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/almalinux-8-or-rocky-linux-8.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/base.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/centos-7.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/centos-7_ppc64le.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/debian-10.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/debian-9.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/rhel-7-or-ol-7.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/rhel-7-or-ol-7_ppc64le.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/rhel-8-or-ol-8.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/sles-12.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/sles-12_ppc64le.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/sles-15.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/sles-15_ppc64le.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/ubuntu-18.04.njk (100%) rename install_template/templates/products/{edb-oci-connector => edb-ocl-connector}/ubuntu-20.04.njk (100%) diff --git a/install_template/config.yaml b/install_template/config.yaml index bcb275a94fe..40ea40042a0 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,42 +1,42 @@ products: - # - name: EDB JDBC Connector - # platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [42.x.x] + - name: EDB JDBC Connector + platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [42.x.x] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [42.x.x] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [42.x.x] + - name: SLES 12 + arch: x86_64 + supported versions: [42.3.3.1] + - name: SLES 12 + arch: ppc64le + supported versions: [42.3.3.1] + - name: SLES 15 + arch: x86_64 + supported versions: [42.3.3.1] + - name: SLES 15 + arch: ppc64le + supported versions: [42.3.3.1] - name: Migration Toolkit platforms: # - name: RHEL 8 or OL 8 @@ -75,83 +75,45 @@ products: - name: SLES 12 arch: x86_64 supported versions: [55] - # - name: EDB OCI Connector - # platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: EDB ODBC Connector - # platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [13.1.0.2] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [13.1.0.2] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [13.1.0.2] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [13.1.0.2] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [13.1.0.2] - - name: EDB pgBouncer + - name: EDB OCL Connector + platforms: + # - name: CentOS 7 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: CentOS 7 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: AlmaLinux 8 or Rocky Linux 8 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: RHEL 7 or OL 7 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: RHEL 7 or OL 7 + # arch: ppc64le + # supported versions: [14.1.0.1] + # - name: RHEL 8 or OL 8 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: Ubuntu 18.04 or Debian 9 + # arch: x86_64 + # supported versions: [14.1.0.1] + # - name: Ubuntu 20.04 or Debian 10 + # arch: x86_64 + # supported versions: [14.1.0.1] + - name: SLES 12 + arch: x86_64 + supported versions: [14.1.0.1] + - name: SLES 12 + arch: ppc64le + supported versions: [14.1.0.1] + - name: SLES 15 + arch: x86_64 + supported versions: [14.1.0.1] + - name: SLES 15 + arch: ppc64le + supported versions: [14.1.0.1] + - name: EDB ODBC Connector platforms: # - name: CentOS 7 # arch: x86_64 diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index 36e6e3b5f6f..97c1042e5e0 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -77,9 +77,9 @@ const moveDoc = (product, platform, version) => { "edb-pgpoolii": "pgpool", "edb-pgpoolii-extensions": "pgpool_extensions", "postgis": "postgis", - "edb-jdbc-connector": "jdbc_connector", - "edb-oci-connector": "ocl_connector", - "edb-odbc-connector": "odbc_connector", + "edb-jdbc-connector": "jdbc", + "edb-ocl-connector": "ocl", + "edb-odbc-connector": "odbc", "edb-pgbouncer": "pgbouncer", @@ -114,7 +114,7 @@ const moveDoc = (product, platform, version) => { "edb-pgpoolii-extensions": "pgpool_extensions", "postgis": "01a", "edb-jdbc-connector": "04", - "edb-oci-connector": "ocl_connector", + "edb-ocl-connector": "03", "edb-odbc-connector": "03", "edb-pgbouncer": "01", @@ -211,6 +211,83 @@ const moveDoc = (product, platform, version) => { context.platform.arch.replace(/_?64/g, ""), ].join("_") + ".mdx"; break; + + case "edb-jdbc-connector": + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_connector", + context.product.version, + [ + product_prefix[product_stub], + "installing_and_configuring_the", + abrev_product[product_stub], + "connector", + ].join("_"), + "01_installing_the_connector_with_an_rpm_package", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + case "edb-odbc-connector": + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_connector", + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing_edb", + abrev_product[product_stub], + ].join("_"), + "01_installing_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + case "edb-ocl-connector": + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_connector", + context.product.version, + [ + product_prefix[product_stub], + "installing_edb", + abrev_product[product_stub], + ].join("_"), + "01_installing_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + case "edb-pgpoolii": dirpath = [ diff --git a/install_template/templates/products/edb-oci-connector/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-ocl-connector/almalinux-8-or-rocky-linux-8.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/almalinux-8-or-rocky-linux-8.njk rename to install_template/templates/products/edb-ocl-connector/almalinux-8-or-rocky-linux-8.njk diff --git a/install_template/templates/products/edb-oci-connector/base.njk b/install_template/templates/products/edb-ocl-connector/base.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/base.njk rename to install_template/templates/products/edb-ocl-connector/base.njk diff --git a/install_template/templates/products/edb-oci-connector/centos-7.njk b/install_template/templates/products/edb-ocl-connector/centos-7.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/centos-7.njk rename to install_template/templates/products/edb-ocl-connector/centos-7.njk diff --git a/install_template/templates/products/edb-oci-connector/centos-7_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/centos-7_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/centos-7_ppc64le.njk rename to install_template/templates/products/edb-ocl-connector/centos-7_ppc64le.njk diff --git a/install_template/templates/products/edb-oci-connector/debian-10.njk b/install_template/templates/products/edb-ocl-connector/debian-10.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/debian-10.njk rename to install_template/templates/products/edb-ocl-connector/debian-10.njk diff --git a/install_template/templates/products/edb-oci-connector/debian-9.njk b/install_template/templates/products/edb-ocl-connector/debian-9.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/debian-9.njk rename to install_template/templates/products/edb-ocl-connector/debian-9.njk diff --git a/install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7.njk rename to install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7.njk diff --git a/install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/rhel-7-or-ol-7_ppc64le.njk rename to install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7_ppc64le.njk diff --git a/install_template/templates/products/edb-oci-connector/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-ocl-connector/rhel-8-or-ol-8.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/rhel-8-or-ol-8.njk rename to install_template/templates/products/edb-ocl-connector/rhel-8-or-ol-8.njk diff --git a/install_template/templates/products/edb-oci-connector/sles-12.njk b/install_template/templates/products/edb-ocl-connector/sles-12.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/sles-12.njk rename to install_template/templates/products/edb-ocl-connector/sles-12.njk diff --git a/install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/sles-12_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/sles-12_ppc64le.njk rename to install_template/templates/products/edb-ocl-connector/sles-12_ppc64le.njk diff --git a/install_template/templates/products/edb-oci-connector/sles-15.njk b/install_template/templates/products/edb-ocl-connector/sles-15.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/sles-15.njk rename to install_template/templates/products/edb-ocl-connector/sles-15.njk diff --git a/install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/sles-15_ppc64le.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/sles-15_ppc64le.njk rename to install_template/templates/products/edb-ocl-connector/sles-15_ppc64le.njk diff --git a/install_template/templates/products/edb-oci-connector/ubuntu-18.04.njk b/install_template/templates/products/edb-ocl-connector/ubuntu-18.04.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/ubuntu-18.04.njk rename to install_template/templates/products/edb-ocl-connector/ubuntu-18.04.njk diff --git a/install_template/templates/products/edb-oci-connector/ubuntu-20.04.njk b/install_template/templates/products/edb-ocl-connector/ubuntu-20.04.njk similarity index 100% rename from install_template/templates/products/edb-oci-connector/ubuntu-20.04.njk rename to install_template/templates/products/edb-ocl-connector/ubuntu-20.04.njk From 2be83915f0b672218924a4036a8a221ebf4437e8 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Fri, 3 Jun 2022 15:47:22 -0700 Subject: [PATCH 161/180] Complete the products that are ready --- install_template/deploy.mjs | 71 +++++++++++++++++++++++++++++++------ 1 file changed, 60 insertions(+), 11 deletions(-) diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index 97c1042e5e0..a95fafa7f5c 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -75,7 +75,7 @@ const moveDoc = (product, platform, version) => { "mongodb-foreign-data-wrapper": "mongo", "mysql-foreign-data-wrapper": "mysql", "edb-pgpoolii": "pgpool", - "edb-pgpoolii-extensions": "pgpool_extensions", + "edb-pgpoolii-extensions": "pgpoolext", "postgis": "postgis", "edb-jdbc-connector": "jdbc", "edb-ocl-connector": "ocl", @@ -111,10 +111,10 @@ const moveDoc = (product, platform, version) => { "mongodb-foreign-data-wrapper": "04", "mysql-foreign-data-wrapper": "04", "edb-pgpoolii": "01", - "edb-pgpoolii-extensions": "pgpool_extensions", + "edb-pgpoolii-extensions": "pgpoolext", "postgis": "01a", "edb-jdbc-connector": "04", - "edb-ocl-connector": "03", + "edb-ocl-connector": "04", "edb-odbc-connector": "03", "edb-pgbouncer": "01", @@ -264,6 +264,10 @@ const moveDoc = (product, platform, version) => { break; case "edb-ocl-connector": + prefix["sles_15_x86_64"]="03"; + prefix["sles_12_x86_64"]="04"; + prefix["sles_15_ppc64le"]="09"; + prefix["sles_12_ppc64le"]="10"; dirpath = [ "..", "product_docs", @@ -272,24 +276,68 @@ const moveDoc = (product, platform, version) => { context.product.version, [ product_prefix[product_stub], - "installing_edb", - abrev_product[product_stub], + "open_client_library", ].join("_"), - "01_installing_linux", + "01_installing_and_configuring_the_ocl_connector", + "install_on_linux_using_edb_repo", expand_arch[context.platform.arch], ].join("/"); - file = + file = [ + prefix[plat], + abrev_product[product_stub], + "connector"+ context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + + case "edb-pgpoolii": + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version, + [ + product_prefix[product_stub], + "installing_and_configuring_the", + abrev_product[product_stub]+"-II", + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + file = [ prefix[plat], - abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), + abrev_product[product_stub], context.platform.name.toLowerCase().replace(/ /g, ""), context.platform.arch.replace(/_?64/g, ""), ].join("_") + ".mdx"; break; + + case "edb-pgpoolii-extensions": + dirpath = [ + "..", + "product_docs", + "docs", + "pgpool", + context.product.version, + "02_extensions", + expand_arch[context.platform.arch], + ].join("/"); + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; - case "edb-pgpoolii": + case "edb-pgbouncer": dirpath = [ "..", "product_docs", @@ -298,9 +346,10 @@ const moveDoc = (product, platform, version) => { context.product.version, [ product_prefix[product_stub], - "installing_and_configuring_the", - abrev_product[product_stub]+"-II", + "installation", ].join("_"), + "install_on_linux", + expand_arch[context.platform.arch], ].join("/"); From 48419ccb49485f6aa3a267c2383cf7f5f01a4334 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Mon, 6 Jun 2022 10:12:39 -0700 Subject: [PATCH 162/180] OCI => OCL changes in the templates themselves --- .../templates/products/edb-ocl-connector/sles-12.njk | 2 +- .../templates/products/edb-ocl-connector/sles-12_ppc64le.njk | 2 +- .../templates/products/edb-ocl-connector/sles-15.njk | 2 +- .../templates/products/edb-ocl-connector/sles-15_ppc64le.njk | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/install_template/templates/products/edb-ocl-connector/sles-12.njk b/install_template/templates/products/edb-ocl-connector/sles-12.njk index a5923e3947f..cbb88e17147 100644 --- a/install_template/templates/products/edb-ocl-connector/sles-12.njk +++ b/install_template/templates/products/edb-ocl-connector/sles-12.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/sles-12_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/sles-12_ppc64le.njk index a5923e3947f..cbb88e17147 100644 --- a/install_template/templates/products/edb-ocl-connector/sles-12_ppc64le.njk +++ b/install_template/templates/products/edb-ocl-connector/sles-12_ppc64le.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "sles-12" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/sles-15.njk b/install_template/templates/products/edb-ocl-connector/sles-15.njk index d5560509e3e..4776c45ab34 100644 --- a/install_template/templates/products/edb-ocl-connector/sles-15.njk +++ b/install_template/templates/products/edb-ocl-connector/sles-15.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "sles-15" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/sles-15_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/sles-15_ppc64le.njk index 64f2ec5cbf3..70725f7778e 100644 --- a/install_template/templates/products/edb-ocl-connector/sles-15_ppc64le.njk +++ b/install_template/templates/products/edb-ocl-connector/sles-15_ppc64le.njk @@ -1,3 +1,3 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% set includePPC = true %} \ No newline at end of file From 2b003cbae36c859ffec348fb0bfa1fb05b80e9f5 Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Tue, 7 Jun 2022 00:02:07 +0000 Subject: [PATCH 163/180] copy files; display errors; prettier --- install_template/deploy.mjs | 657 ++++++++++++++++++------------------ 1 file changed, 329 insertions(+), 328 deletions(-) diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index a95fafa7f5c..689434b3312 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -14,14 +14,14 @@ nunjucks.configure("templates", { throwOnUndefined: true, autoescape: false }); const run = async () => { const config = yaml.parse(await fs.readFile("config.yaml", "utf8")); - config.products.forEach((product) => { - product.platforms.forEach((platform) => { - platform["supported versions"].forEach((version) => { - moveDoc(product, platform, version); - }); - }); - }); - + for (const product of config.products) { + for (const platform of product.platforms) { + for (const version of platform["supported versions"]) { + await moveDoc(product, platform, version); + } + } + } + return; }; @@ -32,17 +32,17 @@ const run = async () => { * @param version The version of the product to generate docs for * @returns void */ -const moveDoc = (product, platform, version) => { -/* - console.log( - `Copying install guide for ${product.name} ${version} on ${platform.name} ${platform.arch}`, - ); -*/ - +const moveDoc = async (product, platform, version) => { + /* + console.log( + `Copying install guide for ${product.name} ${version} on ${platform.name} ${platform.arch}`, + ); + */ + const context = generateContext(product, platform, version); - const product_stub = formatStringForFile(context.product.name) - + const product_stub = formatStringForFile(context.product.name); + const filename = [ product_stub, @@ -69,34 +69,29 @@ const moveDoc = (product, platform, version) => { }; const abrev_product = { - "failover-manager": "efm", - "migration-toolkit": "mtk", - "hadoop-foreign-data-wrapper": "hadoop", - "mongodb-foreign-data-wrapper": "mongo", - "mysql-foreign-data-wrapper": "mysql", - "edb-pgpoolii": "pgpool", - "edb-pgpoolii-extensions": "pgpoolext", - "postgis": "postgis", - "edb-jdbc-connector": "jdbc", - "edb-ocl-connector": "ocl", - "edb-odbc-connector": "odbc", - "edb-pgbouncer": "pgbouncer", - - + "failover-manager": "efm", + "migration-toolkit": "mtk", + "hadoop-foreign-data-wrapper": "hadoop", + "mongodb-foreign-data-wrapper": "mongo", + "mysql-foreign-data-wrapper": "mysql", + "edb-pgpoolii": "pgpool", + "edb-pgpoolii-extensions": "pgpoolext", + postgis: "postgis", + "edb-jdbc-connector": "jdbc", + "edb-ocl-connector": "ocl", + "edb-odbc-connector": "odbc", + "edb-pgbouncer": "pgbouncer", }; - - if (abrev_product[product_stub] == null){ - console.error( - `[ERROR] product abbreviation missing\n` + - product_stub); + if (abrev_product[product_stub] == null) { + console.error(`[ERROR] product abbreviation missing\n` + product_stub); } - + const expand_arch = { ppcle: "ibm_power_ppc64le", - x86: "x86_amd64", - x86_64: "x86_amd64", - ppc64le: "ibm_power_ppc64le", + x86: "x86_amd64", + x86_64: "x86_amd64", + ppc64le: "ibm_power_ppc64le", }; const plat = [ @@ -104,318 +99,325 @@ const moveDoc = (product, platform, version) => { context.platform.arch, ].join("_"); - const product_prefix = { - "failover-manager": "03", - "migration-toolkit": "05", - "hadoop-foreign-data-wrapper": "05", - "mongodb-foreign-data-wrapper": "04", - "mysql-foreign-data-wrapper": "04", - "edb-pgpoolii": "01", - "edb-pgpoolii-extensions": "pgpoolext", - "postgis": "01a", - "edb-jdbc-connector": "04", - "edb-ocl-connector": "04", - "edb-odbc-connector": "03", - "edb-pgbouncer": "01", - - - }; - - var dirpath; - var file; - - - switch (product_stub) { - /* Products that don't have an install_on_linux layer */ + const product_prefix = { + "failover-manager": "03", + "migration-toolkit": "05", + "hadoop-foreign-data-wrapper": "05", + "mongodb-foreign-data-wrapper": "04", + "mysql-foreign-data-wrapper": "04", + "edb-pgpoolii": "01", + "edb-pgpoolii-extensions": "pgpoolext", + postgis: "01a", + "edb-jdbc-connector": "04", + "edb-ocl-connector": "04", + "edb-odbc-connector": "03", + "edb-pgbouncer": "01", + }; + + var dirpath; + var file; + + switch (product_stub) { + /* Products that don't have an install_on_linux layer */ case "failover-manager": - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub], + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub] + context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - /* Products that don't abreviate in the directory */ + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + /* Products that don't abreviate in the directory */ case "migration-toolkit": - dirpath = [ - "..", - "product_docs", - "docs", - context.product.name.toLowerCase().replace(/ /g, '_'), + dirpath = [ + "..", + "product_docs", + "docs", + context.product.name.toLowerCase().replace(/ /g, "_"), + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + "install_on_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub] + context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - "install_on_linux", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - /* Data wrappers */ + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + + /* Data wrappers */ case "hadoop-foreign-data-wrapper": case "mongodb-foreign-data-wrapper": case "mysql-foreign-data-wrapper": - prefix["sles_12_x86"]="07"; - prefix["sles_12_x86_64"]="07"; - prefix["rhel_8_ppc64le"]="13"; - prefix["rhel_7_ppc64le"]="15"; - prefix["sles_12_ppc64le"]="19"; - prefix["sles_15_ppc64le"]="17"; - - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub] + "_data_adapter", - context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing_the", - abrev_product[product_stub], - "data_adapter" - ].join("_"), - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + prefix["sles_12_x86"] = "07"; + prefix["sles_12_x86_64"] = "07"; + prefix["rhel_8_ppc64le"] = "13"; + prefix["rhel_7_ppc64le"] = "15"; + prefix["sles_12_ppc64le"] = "19"; + prefix["sles_15_ppc64le"] = "17"; + + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_data_adapter", + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing_the", + abrev_product[product_stub], + "data_adapter", + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; case "edb-jdbc-connector": - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub] + "_connector", - context.product.version, - [ - product_prefix[product_stub], - "installing_and_configuring_the", - abrev_product[product_stub], - "connector", - ].join("_"), - "01_installing_the_connector_with_an_rpm_package", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_connector", + context.product.version, + [ + product_prefix[product_stub], + "installing_and_configuring_the", + abrev_product[product_stub], + "connector", + ].join("_"), + "01_installing_the_connector_with_an_rpm_package", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub] + + context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; case "edb-odbc-connector": - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub] + "_connector", + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_connector", + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing_edb", + abrev_product[product_stub], + ].join("_"), + "01_installing_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub] + context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing_edb", - abrev_product[product_stub], - ].join("_"), - "01_installing_linux", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; case "edb-ocl-connector": - prefix["sles_15_x86_64"]="03"; - prefix["sles_12_x86_64"]="04"; - prefix["sles_15_ppc64le"]="09"; - prefix["sles_12_ppc64le"]="10"; - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub] + "_connector", - context.product.version, - [ - product_prefix[product_stub], - "open_client_library", - ].join("_"), - "01_installing_and_configuring_the_ocl_connector", - "install_on_linux_using_edb_repo", - expand_arch[context.platform.arch], - ].join("/"); - - file = [ - prefix[plat], - abrev_product[product_stub], - "connector"+ context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), + prefix["sles_15_x86_64"] = "03"; + prefix["sles_12_x86_64"] = "04"; + prefix["sles_15_ppc64le"] = "09"; + prefix["sles_12_ppc64le"] = "10"; + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub] + "_connector", + context.product.version, + [product_prefix[product_stub], "open_client_library"].join("_"), + "01_installing_and_configuring_the_ocl_connector", + "install_on_linux_using_edb_repo", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + "connector" + context.product.version.toString().replace(/\..*/, ""), + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), ].join("_") + ".mdx"; - break; - - + break; + case "edb-pgpoolii": - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub], - context.product.version, - [ - product_prefix[product_stub], - "installing_and_configuring_the", - abrev_product[product_stub]+"-II", - ].join("_"), - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version, + [ + product_prefix[product_stub], + "installing_and_configuring_the", + abrev_product[product_stub] + "-II", + ].join("_"), + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; case "edb-pgpoolii-extensions": - dirpath = [ - "..", - "product_docs", - "docs", - "pgpool", - context.product.version, - "02_extensions", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - + dirpath = [ + "..", + "product_docs", + "docs", + "pgpool", + context.product.version, + "02_extensions", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + case "edb-pgbouncer": - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub], - context.product.version, - [ - product_prefix[product_stub], - "installation", - ].join("_"), - "install_on_linux", - - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version, + [product_prefix[product_stub], "installation"].join("_"), + "install_on_linux", + + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; case "postgis": - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub], - context.product.version, - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - "installing_on_linux", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version, + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + "installing_on_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub], + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; default: - dirpath = [ - "..", - "product_docs", - "docs", - abrev_product[product_stub], + dirpath = [ + "..", + "product_docs", + "docs", + abrev_product[product_stub], + context.product.version.toString().replace(/\..*/, ""), + [ + product_prefix[product_stub], + "installing", + abrev_product[product_stub], + ].join("_"), + "install_on_linux", + expand_arch[context.platform.arch], + ].join("/"); + + file = + [ + prefix[plat], + abrev_product[product_stub] + context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - "install_on_linux", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub]+ context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - } - - console.log(`renders/${filename} ${dirpath}/${file}`); -}; + context.platform.name.toLowerCase().replace(/ /g, ""), + context.platform.arch.replace(/_?64/g, ""), + ].join("_") + ".mdx"; + break; + } + const src = `renders/${filename}`; + const dest = `${dirpath}/${file}`; + try { + await fs.mkdir(path.dirname(dest), { recursive: true }); + await fs.copyFile(src, dest); + console.log(`deployed ${src} to ${dest}`); + } catch (err) { + // print errors with full paths to aid in diagnosis + console.warn(err.toString(), { + src: path.resolve(src), + dest: path.resolve(dest), + }); + } +}; /** * Format a string into the format expected when used in file or folder names. @@ -458,5 +460,4 @@ const generateContext = (product, platform, version) => { }; }; - run(); From a1432d5e4534699b98c847219df3cc2c05f3d127 Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Tue, 7 Jun 2022 17:39:35 -0700 Subject: [PATCH 164/180] Dockerize the deploy script --- docker/docker-compose.deploy-template.yaml | 18 ++++++++++++++++++ package.json | 3 ++- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 docker/docker-compose.deploy-template.yaml diff --git a/docker/docker-compose.deploy-template.yaml b/docker/docker-compose.deploy-template.yaml new file mode 100644 index 00000000000..6011561c0ae --- /dev/null +++ b/docker/docker-compose.deploy-template.yaml @@ -0,0 +1,18 @@ +version: "3.8" + +services: + install-docs-template-deploy: + build: + context: ../ + dockerfile: docker/images/Dockerfile.install-template + image: edb/docs-install-template + container_name: docs-install-template + hostname: docs-install-template + command: sh -c "npm i && node deploy.mjs" + volumes: + - ../install_template/config.yaml:/app/config.yaml:ro + - ../install_template/deploy.mjs:/app/deploy.mjs:ro + - ../install_template/package-lock.json:/app/package-lock.json + - ../install_template/package.json:/app/package.json + - ../install_template/templates:/app/templates:ro + - ../install_template/renders:/app/renders diff --git a/package.json b/package.json index 16f404774ae..72b78c77bb0 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "fix-mtimes": "python3 scripts/source/git-restore-mtime.py --force", "format": "prettier --write src/**/*.js gatsby-*.js", "install-docs:build": "docker-compose -f docker/docker-compose.install-template.yaml run --rm install-docs-template-renderer", + "install-docs:deploy": "docker-compose -f docker/docker-compose.deploy-template.yaml run --rm install-docs-template-deploy", "install-docs:rebuild-docker-image": "docker-compose -f docker/docker-compose.install-template.yaml build --pull --no-cache", "logs": "docker-compose -f docker/docker-compose.quickstart.yaml logs -f", "pdf:build": "docker-compose -f docker/docker-compose.build-pdf.yaml run --rm --entrypoint scripts/pdf/generate_pdf.py docs-pdf-builder", @@ -107,4 +108,4 @@ "type": "git", "url": "https://github.com/EnterpriseDB/docs" } -} \ No newline at end of file +} From 4c3c2cb88e32e5da5718c647149cf673835b6a49 Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 8 Jun 2022 15:37:19 +0000 Subject: [PATCH 165/180] deploy files outside of container --- docker/docker-compose.deploy-template.yaml | 18 ------ docker/docker-compose.install-template.yaml | 2 + install_template/deploy.mjs | 65 +++++++++------------ package.json | 2 +- 4 files changed, 29 insertions(+), 58 deletions(-) delete mode 100644 docker/docker-compose.deploy-template.yaml diff --git a/docker/docker-compose.deploy-template.yaml b/docker/docker-compose.deploy-template.yaml deleted file mode 100644 index 6011561c0ae..00000000000 --- a/docker/docker-compose.deploy-template.yaml +++ /dev/null @@ -1,18 +0,0 @@ -version: "3.8" - -services: - install-docs-template-deploy: - build: - context: ../ - dockerfile: docker/images/Dockerfile.install-template - image: edb/docs-install-template - container_name: docs-install-template - hostname: docs-install-template - command: sh -c "npm i && node deploy.mjs" - volumes: - - ../install_template/config.yaml:/app/config.yaml:ro - - ../install_template/deploy.mjs:/app/deploy.mjs:ro - - ../install_template/package-lock.json:/app/package-lock.json - - ../install_template/package.json:/app/package.json - - ../install_template/templates:/app/templates:ro - - ../install_template/renders:/app/renders diff --git a/docker/docker-compose.install-template.yaml b/docker/docker-compose.install-template.yaml index 585aeef71c9..b3d5c29b1bb 100644 --- a/docker/docker-compose.install-template.yaml +++ b/docker/docker-compose.install-template.yaml @@ -12,7 +12,9 @@ services: volumes: - ../install_template/config.yaml:/app/config.yaml:ro - ../install_template/main.mjs:/app/main.mjs:ro + - ../install_template/deploy.mjs:/app/deploy.mjs:ro - ../install_template/package-lock.json:/app/package-lock.json - ../install_template/package.json:/app/package.json - ../install_template/templates:/app/templates:ro - ../install_template/renders:/app/renders + - ../product_docs/docs:/app/product_docs/docs diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index 689434b3312..7bc05c9611a 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -1,18 +1,28 @@ import fs from "fs/promises"; import { existsSync as fileExists } from "fs"; import path from "path"; +import { fileURLToPath } from "url"; import nunjucks from "nunjucks"; import prettier from "prettier"; import yaml from "yaml"; nunjucks.configure("templates", { throwOnUndefined: true, autoescape: false }); +// script takes one _optional_ parameter: the base directory to write output to. +// if not specified, defaults to ../product_docs/docs +// if relative (as is the default), this path is interpreted relative to the location of this script +const args = process.argv.slice(2); +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const destPath = path.resolve(__dirname, args[0] || "../product_docs/docs"); + /** * Loop through the config.yaml file and generate docs for every product/platform/supported version combination found. * @returns void */ const run = async () => { - const config = yaml.parse(await fs.readFile("config.yaml", "utf8")); + const config = yaml.parse( + await fs.readFile(path.resolve(__dirname, "config.yaml"), "utf8"), + ); for (const product of config.products) { for (const platform of product.platforms) { @@ -121,9 +131,7 @@ const moveDoc = async (product, platform, version) => { /* Products that don't have an install_on_linux layer */ case "failover-manager": dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub], context.product.version.toString().replace(/\..*/, ""), [ @@ -147,9 +155,7 @@ const moveDoc = async (product, platform, version) => { /* Products that don't abreviate in the directory */ case "migration-toolkit": dirpath = [ - "..", - "product_docs", - "docs", + destPath, context.product.name.toLowerCase().replace(/ /g, "_"), context.product.version.toString().replace(/\..*/, ""), [ @@ -183,9 +189,7 @@ const moveDoc = async (product, platform, version) => { prefix["sles_15_ppc64le"] = "17"; dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub] + "_data_adapter", context.product.version.toString().replace(/\..*/, ""), [ @@ -208,9 +212,7 @@ const moveDoc = async (product, platform, version) => { case "edb-jdbc-connector": dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub] + "_connector", context.product.version, [ @@ -235,9 +237,7 @@ const moveDoc = async (product, platform, version) => { case "edb-odbc-connector": dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub] + "_connector", context.product.version.toString().replace(/\..*/, ""), [ @@ -265,9 +265,7 @@ const moveDoc = async (product, platform, version) => { prefix["sles_15_ppc64le"] = "09"; prefix["sles_12_ppc64le"] = "10"; dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub] + "_connector", context.product.version, [product_prefix[product_stub], "open_client_library"].join("_"), @@ -288,9 +286,7 @@ const moveDoc = async (product, platform, version) => { case "edb-pgpoolii": dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub], context.product.version, [ @@ -312,9 +308,7 @@ const moveDoc = async (product, platform, version) => { case "edb-pgpoolii-extensions": dirpath = [ - "..", - "product_docs", - "docs", + destPath, "pgpool", context.product.version, "02_extensions", @@ -332,9 +326,7 @@ const moveDoc = async (product, platform, version) => { case "edb-pgbouncer": dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub], context.product.version, [product_prefix[product_stub], "installation"].join("_"), @@ -354,9 +346,7 @@ const moveDoc = async (product, platform, version) => { case "postgis": dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub], context.product.version, [ @@ -379,9 +369,7 @@ const moveDoc = async (product, platform, version) => { default: dirpath = [ - "..", - "product_docs", - "docs", + destPath, abrev_product[product_stub], context.product.version.toString().replace(/\..*/, ""), [ @@ -404,17 +392,16 @@ const moveDoc = async (product, platform, version) => { break; } - const src = `renders/${filename}`; - const dest = `${dirpath}/${file}`; + const src = path.resolve(__dirname, "renders", filename); + const dest = path.resolve(__dirname, dirpath, file); try { await fs.mkdir(path.dirname(dest), { recursive: true }); await fs.copyFile(src, dest); console.log(`deployed ${src} to ${dest}`); } catch (err) { - // print errors with full paths to aid in diagnosis console.warn(err.toString(), { - src: path.resolve(src), - dest: path.resolve(dest), + src, + dest, }); } }; diff --git a/package.json b/package.json index 72b78c77bb0..ab988bf98b2 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "fix-mtimes": "python3 scripts/source/git-restore-mtime.py --force", "format": "prettier --write src/**/*.js gatsby-*.js", "install-docs:build": "docker-compose -f docker/docker-compose.install-template.yaml run --rm install-docs-template-renderer", - "install-docs:deploy": "docker-compose -f docker/docker-compose.deploy-template.yaml run --rm install-docs-template-deploy", + "install-docs:deploy": "docker-compose -f docker/docker-compose.install-template.yaml run --rm install-docs-template-renderer sh -c 'npm i && node deploy.mjs product_docs/docs'", "install-docs:rebuild-docker-image": "docker-compose -f docker/docker-compose.install-template.yaml build --pull --no-cache", "logs": "docker-compose -f docker/docker-compose.quickstart.yaml logs -f", "pdf:build": "docker-compose -f docker/docker-compose.build-pdf.yaml run --rm --entrypoint scripts/pdf/generate_pdf.py docs-pdf-builder", From 5d252c20934b5c16eae9c2a1ef03c46dbbd1896b Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 8 Jun 2022 18:51:41 +0000 Subject: [PATCH 166/180] Fix corrupt file --- .../11_eprs_sles15_ppcle.mdx | 34 +++++++------------ 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx b/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx index 618f0f41edd..2f6b0225fa5 100644 --- a/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx +++ b/product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx @@ -1,14 +1,14 @@ --- -<<<<<<< HEAD:product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx title: "Installing Replication Server on SLES 15 IBM Power (ppc64le)" navTitle: "SLES 15" -======= -navTitle: SLES 15 on ppc64le -title: Installing EDB OCI Connector on SLES 15 ppc64le ->>>>>>> c95667644 (Changes to test generated output for connector products):install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx --- -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: @@ -16,28 +16,24 @@ To log in as a superuser: sudo su - ``` -## Set up the repository +Before setting up the repository, you need to register with EDB. To receive credentials for the EDB repository, visit: [Repository Access Request](https://www.enterprisedb.com/repository-access-request). -<<<<<<< HEAD:product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx ## 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). ->>>>>>> c95667644 (Changes to test generated output for connector products):install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx Setting up the repository is a one time task. If you have already set up your repository, you do not need to perform these steps. ```shell -# Install the repository configuration and enter your EDB repository +# Install the repository configuration and enter your EDB repository # credentials when prompted zypper addrepo https://zypp.enterprisedb.com/suse/edb-sles.repo -# Install SUSEConnect to register the host with SUSE, allowing access -# to SUSE repositories +# Install SUSEConnect to register the host with SUSE, allowing access to +# SUSE repositories zypper install SUSEConnect # Register the host with SUSE, allowing access to SUSE repositories -# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE -# registration information +# Replace 'REGISTRATION_CODE' and 'EMAIL' with your SUSE registration +# information SUSEConnect -r 'REGISTRATION_CODE' -e 'EMAIL' # Activate the required SUSE module @@ -48,7 +44,6 @@ zypper refresh ``` ## Install the package -<<<<<<< HEAD:product_docs/docs/eprs/7/03_installation/03_installing_rpm_package/ibm_power_ppc64le/11_eprs_sles15_ppcle.mdx You can install all Replication Server components with a single install command, or you may choose to install selected, individual components by installing only those particular packages. @@ -62,11 +57,6 @@ To install an individual component: ```shell dnf install package_name -======= - -```shell -zypper -n install edb-oci ->>>>>>> c95667644 (Changes to test generated output for connector products):install_template/renders/edb-oci-connector_14.1.0.1_sles-15_ppc64le.mdx ``` Where `package_name` is: From b9d6e91d9a85610335f26f03f6c88743c23b36ab Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 8 Jun 2022 18:54:24 +0000 Subject: [PATCH 167/180] More oci->ocl --- .../products/edb-ocl-connector/almalinux-8-or-rocky-linux-8.njk | 2 +- .../templates/products/edb-ocl-connector/centos-7.njk | 2 +- .../templates/products/edb-ocl-connector/centos-7_ppc64le.njk | 2 +- .../templates/products/edb-ocl-connector/debian-10.njk | 2 +- .../templates/products/edb-ocl-connector/debian-9.njk | 2 +- .../templates/products/edb-ocl-connector/rhel-7-or-ol-7.njk | 2 +- .../products/edb-ocl-connector/rhel-7-or-ol-7_ppc64le.njk | 2 +- .../templates/products/edb-ocl-connector/rhel-8-or-ol-8.njk | 2 +- .../templates/products/edb-ocl-connector/ubuntu-18.04.njk | 2 +- .../templates/products/edb-ocl-connector/ubuntu-20.04.njk | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/install_template/templates/products/edb-ocl-connector/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/edb-ocl-connector/almalinux-8-or-rocky-linux-8.njk index 0d4f4d0c0a1..795fa4d65f8 100644 --- a/install_template/templates/products/edb-ocl-connector/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/edb-ocl-connector/almalinux-8-or-rocky-linux-8.njk @@ -1,4 +1,4 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} {% block prerequisites %} {{ super() }} diff --git a/install_template/templates/products/edb-ocl-connector/centos-7.njk b/install_template/templates/products/edb-ocl-connector/centos-7.njk index e6cfd6922b3..07abf1c5d59 100644 --- a/install_template/templates/products/edb-ocl-connector/centos-7.njk +++ b/install_template/templates/products/edb-ocl-connector/centos-7.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "centos-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/centos-7_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/centos-7_ppc64le.njk index 7dbb5bf1924..2c7baf131f6 100644 --- a/install_template/templates/products/edb-ocl-connector/centos-7_ppc64le.njk +++ b/install_template/templates/products/edb-ocl-connector/centos-7_ppc64le.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/centos-7.njk" %} +{% extends "products/edb-ocl-connector/centos-7.njk" %} {% set includePPC = true %} diff --git a/install_template/templates/products/edb-ocl-connector/debian-10.njk b/install_template/templates/products/edb-ocl-connector/debian-10.njk index c48eeccdea8..df7c17ecae0 100644 --- a/install_template/templates/products/edb-ocl-connector/debian-10.njk +++ b/install_template/templates/products/edb-ocl-connector/debian-10.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "debian-10" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/debian-9.njk b/install_template/templates/products/edb-ocl-connector/debian-9.njk index 6acb2907ca3..69152bba6d4 100644 --- a/install_template/templates/products/edb-ocl-connector/debian-9.njk +++ b/install_template/templates/products/edb-ocl-connector/debian-9.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "debian-9" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7.njk b/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7.njk index d6ada410952..5f4dd3bea58 100644 --- a/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7.njk +++ b/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "rhel-7-or-ol-7" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7_ppc64le.njk b/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7_ppc64le.njk index 3a71c0a2bda..f86f93620e3 100644 --- a/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7_ppc64le.njk +++ b/install_template/templates/products/edb-ocl-connector/rhel-7-or-ol-7_ppc64le.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/rhel-7-or-ol-7.njk" %} +{% extends "products/edb-ocl-connector/rhel-7-or-ol-7.njk" %} {% set includePPC = true %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-ocl-connector/rhel-8-or-ol-8.njk index 6b30a458d99..9b691257a4e 100644 --- a/install_template/templates/products/edb-ocl-connector/rhel-8-or-ol-8.njk +++ b/install_template/templates/products/edb-ocl-connector/rhel-8-or-ol-8.njk @@ -1,2 +1,2 @@ -{% extends "products/edb-oci-connector/base.njk" %} +{% extends "products/edb-ocl-connector/base.njk" %} {% set platformBaseTemplate = "rhel-8-or-ol-8" %} \ No newline at end of file diff --git a/install_template/templates/products/edb-ocl-connector/ubuntu-18.04.njk b/install_template/templates/products/edb-ocl-connector/ubuntu-18.04.njk index e8bc4fff6fa..91a910513bd 100644 --- a/install_template/templates/products/edb-ocl-connector/ubuntu-18.04.njk +++ b/install_template/templates/products/edb-ocl-connector/ubuntu-18.04.njk @@ -1 +1 @@ -{% extends "products/edb-oci-connector/debian-10.njk" %} +{% extends "products/edb-ocl-connector/debian-10.njk" %} diff --git a/install_template/templates/products/edb-ocl-connector/ubuntu-20.04.njk b/install_template/templates/products/edb-ocl-connector/ubuntu-20.04.njk index e8bc4fff6fa..91a910513bd 100644 --- a/install_template/templates/products/edb-ocl-connector/ubuntu-20.04.njk +++ b/install_template/templates/products/edb-ocl-connector/ubuntu-20.04.njk @@ -1 +1 @@ -{% extends "products/edb-oci-connector/debian-10.njk" %} +{% extends "products/edb-ocl-connector/debian-10.njk" %} From b42fc6f12ee03c62d447e7013cac68613ac979a6 Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 8 Jun 2022 19:04:08 +0000 Subject: [PATCH 168/180] Render all templates, let git ignore the output --- install_template/.gitignore | 2 +- install_template/config.yaml | 806 ++++++++++++++++++----------------- 2 files changed, 423 insertions(+), 385 deletions(-) diff --git a/install_template/.gitignore b/install_template/.gitignore index c21bbed6bd0..a7b7307161e 100644 --- a/install_template/.gitignore +++ b/install_template/.gitignore @@ -1,5 +1,5 @@ node_modules/ # when ready to go live (before merging into develop) then uncomment this line and remove renders (and also add logic to copy these files to their intended destination) -#renders/* +renders/* !renders/.gitkeep .DS_Store diff --git a/install_template/config.yaml b/install_template/config.yaml index 40ea40042a0..cd4d6931cdd 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -1,30 +1,30 @@ products: - name: EDB JDBC Connector platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [42.x.x] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [42.x.x] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [42.x.x] + - name: CentOS 7 + arch: x86_64 + supported versions: [42.x.x] + - name: CentOS 7 + arch: ppc64le + supported versions: [42.x.x] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [42.x.x] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [42.x.x] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [42.x.x] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [42.x.x] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [42.x.x] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [42.x.x] - name: SLES 12 arch: x86_64 supported versions: [42.3.3.1] @@ -39,36 +39,36 @@ products: supported versions: [42.3.3.1] - name: Migration Toolkit platforms: - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [55] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [55] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [55] - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [55] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [55] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [55] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [55] + - name: CentOS 7 + arch: x86_64 + supported versions: [55] - name: SLES 15 arch: x86_64 supported versions: [55] - name: SLES 12 arch: ppc64le supported versions: [55] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [55] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [55] - # - name: RHEL 8 or OL 8 - # arch: ppc64le - # supported versions: [55] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [55] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [55] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [55] + - name: RHEL 8 or OL 8 + arch: ppc64le + supported versions: [55] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [55] - name: SLES 15 arch: ppc64le supported versions: [55] @@ -77,30 +77,30 @@ products: supported versions: [55] - name: EDB OCL Connector platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [14.1.0.1] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [14.1.0.1] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [14.1.0.1] + - name: CentOS 7 + arch: x86_64 + supported versions: [14.1.0.1] + - name: CentOS 7 + arch: ppc64le + supported versions: [14.1.0.1] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [14.1.0.1] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [14.1.0.1] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [14.1.0.1] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [14.1.0.1] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [14.1.0.1] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [14.1.0.1] - name: SLES 12 arch: x86_64 supported versions: [14.1.0.1] @@ -115,30 +115,68 @@ products: supported versions: [14.1.0.1] - name: EDB ODBC Connector platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [1.14, 1.15, 1.16] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [1.14, 1.15, 1.16] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [1.14, 1.15, 1.16] + - name: CentOS 7 + arch: x86_64 + supported versions: [13.1.0.2] + - name: CentOS 7 + arch: ppc64le + supported versions: [13.1.0.2] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [13.1.0.2] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [13.1.0.2] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [13.1.0.2] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [13.1.0.2] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [13.1.0.2] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 12 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 12 + arch: ppc64le + supported versions: [13.1.0.2] + - name: SLES 15 + arch: x86_64 + supported versions: [13.1.0.2] + - name: SLES 15 + arch: ppc64le + supported versions: [13.1.0.2] + - name: EDB pgBouncer + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: CentOS 7 + arch: ppc64le + supported versions: [1.14, 1.15, 1.16] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [1.14, 1.15, 1.16] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [1.14, 1.15, 1.16] - name: SLES 12 arch: x86_64 supported versions: [1.16] @@ -153,30 +191,30 @@ products: supported versions: [1.16] - name: EDB PgpoolII platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] + - name: CentOS 7 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: CentOS 7 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] - name: SLES 12 arch: x86_64 supported versions: [4.3] @@ -191,30 +229,30 @@ products: supported versions: [4.3] - name: EDB PgpoolII Extensions platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [4.0, 4.1, 4.2, 4.3] + - name: CentOS 7 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: CentOS 7 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [4.0, 4.1, 4.2, 4.3] - name: SLES 12 arch: x86_64 supported versions: [4.3] @@ -227,114 +265,114 @@ products: - name: SLES 15 arch: ppc64le supported versions: [4.3] - # - name: EDB Postgres Advanced Server - # platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [10, 11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [10, 11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [9.6, 10, 11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [9.6, 10, 11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: local - # supported versions: [9.6, 10, 11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: Linux on IBM Power (ppc64le) - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] - # - name: EDB*Plus - # platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [9.6, 11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [9.6, 11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [9.6, 11, 12, 13, 14] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [14] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [14] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [14] + - name: EDB Postgres Advanced Server + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [10, 11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [10, 11, 12, 13, 14] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [9.6, 10, 11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [9.6, 10, 11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: local + supported versions: [9.6, 10, 11, 12, 13, 14] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 8 or OL 8 + arch: Linux on IBM Power (ppc64le) + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] + - name: EDB*Plus + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [9.6, 11, 12, 13, 14] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [9.6, 11, 12, 13, 14] + - name: SLES 12 + arch: x86_64 + supported versions: [14] + - name: SLES 12 + arch: ppc64le + supported versions: [14] + - name: SLES 15 + arch: x86_64 + supported versions: [14] + - name: SLES 15 + arch: ppc64le + supported versions: [14] - name: Failover Manager platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: CentOS 7 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: CentOS 7 + arch: ppc64le + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [3.10, 4.0, 4.1, 4.2, 4.3, 4.4] - name: SLES 12 arch: x86_64 supported versions: [4.4] @@ -349,30 +387,30 @@ products: supported versions: [4.4] - name: Hadoop Foreign Data Wrapper platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [14] + - name: CentOS 7 + arch: x86_64 + supported versions: [14] + - name: CentOS 7 + arch: ppc64le + supported versions: [14] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [14] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [14] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [14] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [14] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [14] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [14] - name: SLES 12 arch: x86_64 supported versions: [14] @@ -387,30 +425,30 @@ products: supported versions: [14] - name: MongoDB Foreign Data Wrapper platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] - name: SLES 12 arch: x86_64 supported versions: [14] @@ -425,30 +463,30 @@ products: supported versions: [14] - name: MySQL Foreign Data Wrapper platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] - name: SLES 12 arch: x86_64 supported versions: [14] @@ -463,30 +501,30 @@ products: supported versions: [14] - name: PostGIS platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [11, 12, 13, 14] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: CentOS 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [11, 12, 13, 14] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [11, 12, 13, 14] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [11, 12, 13, 14] - name: SLES 12 arch: x86_64 supported versions: [14] @@ -499,41 +537,41 @@ products: - name: SLES 15 arch: ppc64le supported versions: [14] - # - name: Postgres Enterprise Manager - # platforms: - # - name: CentOS 7 - # arch: x86_64 - # supported versions: [7, 8] - # - name: CentOS 7 - # arch: ppc64le - # supported versions: [7, 8] - # - name: AlmaLinux 8 or Rocky Linux 8 - # arch: x86_64 - # supported versions: [7, 8] - # - name: RHEL 7 or OL 7 - # arch: x86_64 - # supported versions: [7, 8] - # - name: RHEL 7 or OL 7 - # arch: ppc64le - # supported versions: [7, 8] - # - name: RHEL 8 or OL 8 - # arch: x86_64 - # supported versions: [7, 8] - # - name: Ubuntu 18.04 or Debian 9 - # arch: x86_64 - # supported versions: [7, 8] - # - name: Ubuntu 20.04 or Debian 10 - # arch: x86_64 - # supported versions: [7, 8] - # - name: SLES 12 - # arch: x86_64 - # supported versions: [8] - # - name: SLES 15 - # arch: x86_64 - # supported versions: [8] - # - name: SLES 12 - # arch: ppc64le - # supported versions: [8] - # - name: SLES 15 - # arch: ppc64le - # supported versions: [8] + - name: Postgres Enterprise Manager + platforms: + - name: CentOS 7 + arch: x86_64 + supported versions: [7, 8] + - name: CentOS 7 + arch: ppc64le + supported versions: [7, 8] + - name: AlmaLinux 8 or Rocky Linux 8 + arch: x86_64 + supported versions: [7, 8] + - name: RHEL 7 or OL 7 + arch: x86_64 + supported versions: [7, 8] + - name: RHEL 7 or OL 7 + arch: ppc64le + supported versions: [7, 8] + - name: RHEL 8 or OL 8 + arch: x86_64 + supported versions: [7, 8] + - name: Ubuntu 18.04 or Debian 9 + arch: x86_64 + supported versions: [7, 8] + - name: Ubuntu 20.04 or Debian 10 + arch: x86_64 + supported versions: [7, 8] + - name: SLES 12 + arch: x86_64 + supported versions: [8] + - name: SLES 15 + arch: x86_64 + supported versions: [8] + - name: SLES 12 + arch: ppc64le + supported versions: [8] + - name: SLES 15 + arch: ppc64le + supported versions: [8] From 3204417dbb61b679dded37a4657699296d20a00c Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 8 Jun 2022 21:10:42 +0000 Subject: [PATCH 169/180] Fix version for hadoop --- install_template/config.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/install_template/config.yaml b/install_template/config.yaml index cd4d6931cdd..7dafc8fa689 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -389,40 +389,40 @@ products: platforms: - name: CentOS 7 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: CentOS 7 arch: ppc64le - supported versions: [14] + supported versions: [2] - name: AlmaLinux 8 or Rocky Linux 8 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: RHEL 7 or OL 7 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: RHEL 7 or OL 7 arch: ppc64le - supported versions: [14] + supported versions: [2] - name: RHEL 8 or OL 8 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: Ubuntu 18.04 or Debian 9 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: Ubuntu 20.04 or Debian 10 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: SLES 12 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: SLES 12 arch: ppc64le - supported versions: [14] + supported versions: [2] - name: SLES 15 arch: x86_64 - supported versions: [14] + supported versions: [2] - name: SLES 15 arch: ppc64le - supported versions: [14] + supported versions: [2] - name: MongoDB Foreign Data Wrapper platforms: - name: CentOS 7 From a839515a4eff3ea42f6cf8cd2382a0bd61f7dfdb Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Wed, 8 Jun 2022 21:49:46 +0000 Subject: [PATCH 170/180] quick dirty pattern language --- install_template/deploy.mjs | 399 ++++++++--------------------- install_template/package-lock.json | 11 + install_template/package.json | 1 + 3 files changed, 117 insertions(+), 294 deletions(-) diff --git a/install_template/deploy.mjs b/install_template/deploy.mjs index 7bc05c9611a..13aedc19376 100644 --- a/install_template/deploy.mjs +++ b/install_template/deploy.mjs @@ -1,10 +1,9 @@ import fs from "fs/promises"; -import { existsSync as fileExists } from "fs"; import path from "path"; import { fileURLToPath } from "url"; import nunjucks from "nunjucks"; -import prettier from "prettier"; import yaml from "yaml"; +import isMatch from "lodash.ismatch"; nunjucks.configure("templates", { throwOnUndefined: true, autoescape: false }); @@ -24,14 +23,26 @@ const run = async () => { await fs.readFile(path.resolve(__dirname, "config.yaml"), "utf8"), ); + let results = []; + for (const product of config.products) { for (const platform of product.platforms) { for (const version of platform["supported versions"]) { - await moveDoc(product, platform, version); + results.push(await moveDoc(product, platform, version)); } } } + for (const result of results.filter((r) => !!r.success)) + console.log(result.success); + for (const result of results.filter((r) => !!r.warn)) + console.warn(result.warn, result.context); + console.log( + `${ + results.filter((r) => r.note && /^Skipping/.test(r.note)).length + } files skipped`, + ); + return; }; @@ -40,7 +51,7 @@ const run = async () => { * @param product The product name we are generating a template for * @param platform The platform and architecture we are generating docs for (e.g. { name: Centos 7, arch: x86_64 }) * @param version The version of the product to generate docs for - * @returns void + * @returns object {success: 'message', note: 'observation', warn: 'warning or error', context: {additional}} */ const moveDoc = async (product, platform, version) => { /* @@ -53,7 +64,7 @@ const moveDoc = async (product, platform, version) => { const product_stub = formatStringForFile(context.product.name); - const filename = + const srcFilename = [ product_stub, context.product.version, @@ -61,8 +72,6 @@ const moveDoc = async (product, platform, version) => { context.platform.arch, ].join("_") + ".mdx"; - /*console.log(` copying ${filename}`);*/ - const prefix = { rhel_8_x86_64: "01", other_linux8_x86_64: "02", @@ -78,23 +87,23 @@ const moveDoc = async (product, platform, version) => { sles_12_ppc64le: "12", }; - const abrev_product = { - "failover-manager": "efm", - "migration-toolkit": "mtk", - "hadoop-foreign-data-wrapper": "hadoop", - "mongodb-foreign-data-wrapper": "mongo", - "mysql-foreign-data-wrapper": "mysql", - "edb-pgpoolii": "pgpool", - "edb-pgpoolii-extensions": "pgpoolext", - postgis: "postgis", - "edb-jdbc-connector": "jdbc", - "edb-ocl-connector": "ocl", - "edb-odbc-connector": "odbc", - "edb-pgbouncer": "pgbouncer", - }; - - if (abrev_product[product_stub] == null) { - console.error(`[ERROR] product abbreviation missing\n` + product_stub); + switch (product_stub) { + case "hadoop-foreign-data-wrapper": + case "mongodb-foreign-data-wrapper": + case "mysql-foreign-data-wrapper": + prefix["sles_12_x86"] = "07"; + prefix["sles_12_x86_64"] = "07"; + prefix["rhel_8_ppc64le"] = "13"; + prefix["rhel_7_ppc64le"] = "15"; + prefix["sles_12_ppc64le"] = "19"; + prefix["sles_15_ppc64le"] = "17"; + break; + case "edb-ocl-connector": + prefix["sles_15_x86_64"] = "03"; + prefix["sles_12_x86_64"] = "04"; + prefix["sles_15_ppc64le"] = "09"; + prefix["sles_12_ppc64le"] = "10"; + break; } const expand_arch = { @@ -124,285 +133,87 @@ const moveDoc = async (product, platform, version) => { "edb-pgbouncer": "01", }; - var dirpath; - var file; - - switch (product_stub) { - /* Products that don't have an install_on_linux layer */ - case "failover-manager": - dirpath = [ - destPath, - abrev_product[product_stub], - context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub] + - context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - /* Products that don't abreviate in the directory */ - case "migration-toolkit": - dirpath = [ - destPath, - context.product.name.toLowerCase().replace(/ /g, "_"), - context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - "install_on_linux", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub] + - context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - /* Data wrappers */ - case "hadoop-foreign-data-wrapper": - case "mongodb-foreign-data-wrapper": - case "mysql-foreign-data-wrapper": - prefix["sles_12_x86"] = "07"; - prefix["sles_12_x86_64"] = "07"; - prefix["rhel_8_ppc64le"] = "13"; - prefix["rhel_7_ppc64le"] = "15"; - prefix["sles_12_ppc64le"] = "19"; - prefix["sles_15_ppc64le"] = "17"; - - dirpath = [ - destPath, - abrev_product[product_stub] + "_data_adapter", - context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing_the", - abrev_product[product_stub], - "data_adapter", - ].join("_"), - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - case "edb-jdbc-connector": - dirpath = [ - destPath, - abrev_product[product_stub] + "_connector", - context.product.version, - [ - product_prefix[product_stub], - "installing_and_configuring_the", - abrev_product[product_stub], - "connector", - ].join("_"), - "01_installing_the_connector_with_an_rpm_package", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub] + - context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - case "edb-odbc-connector": - dirpath = [ - destPath, - abrev_product[product_stub] + "_connector", - context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing_edb", - abrev_product[product_stub], - ].join("_"), - "01_installing_linux", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub] + - context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - case "edb-ocl-connector": - prefix["sles_15_x86_64"] = "03"; - prefix["sles_12_x86_64"] = "04"; - prefix["sles_15_ppc64le"] = "09"; - prefix["sles_12_ppc64le"] = "10"; - dirpath = [ - destPath, - abrev_product[product_stub] + "_connector", - context.product.version, - [product_prefix[product_stub], "open_client_library"].join("_"), - "01_installing_and_configuring_the_ocl_connector", - "install_on_linux_using_edb_repo", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - "connector" + context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - case "edb-pgpoolii": - dirpath = [ - destPath, - abrev_product[product_stub], - context.product.version, - [ - product_prefix[product_stub], - "installing_and_configuring_the", - abrev_product[product_stub] + "-II", - ].join("_"), - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - case "edb-pgpoolii-extensions": - dirpath = [ - destPath, - "pgpool", - context.product.version, - "02_extensions", - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - case "edb-pgbouncer": - dirpath = [ - destPath, - abrev_product[product_stub], - context.product.version, - [product_prefix[product_stub], "installation"].join("_"), - "install_on_linux", - - expand_arch[context.platform.arch], - ].join("/"); - - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; - - case "postgis": - dirpath = [ - destPath, - abrev_product[product_stub], - context.product.version, - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - "installing_on_linux", - expand_arch[context.platform.arch], - ].join("/"); + const fmtArchPath = (ctx) => expand_arch[ctx.platform.arch]; + const fmtArchFilename = (ctx) => ctx.platform.arch.replace(/_?64/g, ""); + + // prettier-ignore + const destFilename = match(context, + when({product: {name: "Failover Manager", version: 4.4}, platform: {name: "SLES 12"}}, + (ctx) => `efm/4/03_installing_efm/${fmtArchPath(ctx)}/${prefix[plat]}_efm4_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "Failover Manager", version: 4.4}, platform: {name: "SLES 15"}}, + (ctx) => `efm/4/03_installing_efm/${fmtArchPath(ctx)}/${prefix[plat]}_efm4_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "Hadoop Foreign Data Wrapper"}, platform: {name: "SLES 12"}}, + (ctx) => `hadoop_data_adapter/2/05_installing_the_hadoop_data_adapter/${fmtArchPath(ctx)}/${prefix[plat]}_hadoop_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "Hadoop Foreign Data Wrapper"}, platform: {name: "SLES 15"}}, + (ctx) => `hadoop_data_adapter/2/05_installing_the_hadoop_data_adapter/${fmtArchPath(ctx)}/${prefix[plat]}_hadoop_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB JDBC Connector"}, platform: {name: "SLES 12"}}, + (ctx) => `jdbc_connector/42.3.3.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/${fmtArchPath(ctx)}/${prefix[plat]}_jdbc42_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB JDBC Connector"}, platform: {name: "SLES 15"}}, + (ctx) => `jdbc_connector/42.3.3.1/04_installing_and_configuring_the_jdbc_connector/01_installing_the_connector_with_an_rpm_package/${fmtArchPath(ctx)}/${prefix[plat]}_jdbc42_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "Migration Toolkit"}, platform: {name: "SLES 12"}}, + (ctx) => `migration_toolkit/55/05_installing_mtk/install_on_linux/${fmtArchPath(ctx)}/${prefix[plat]}_mtk55_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "Migration Toolkit"}, platform: {name: "SLES 15"}}, + (ctx) => `migration_toolkit/55/05_installing_mtk/install_on_linux/${fmtArchPath(ctx)}/${prefix[plat]}_mtk55_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "MongoDB Foreign Data Wrapper", version: 14}, platform: {name: "SLES 12"}}, + (ctx) => `mongo_data_adapter/14/04_installing_the_mongo_data_adapter/${fmtArchPath(ctx)}/${prefix[plat]}_mongo_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "MongoDB Foreign Data Wrapper", version: 14}, platform: {name: "SLES 15"}}, + (ctx) => `mongo_data_adapter/14/04_installing_the_mongo_data_adapter/${fmtArchPath(ctx)}/${prefix[plat]}_mongo_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "MySQL Foreign Data Wrapper", version: 14}, platform: {name: "SLES 12"}}, + (ctx) => `mysql_data_adapter/14/04_installing_the_mysql_data_adapter/${fmtArchPath(ctx)}/${prefix[plat]}_mysql_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "MySQL Foreign Data Wrapper", version: 14}, platform: {name: "SLES 15"}}, + (ctx) => `mysql_data_adapter/14/04_installing_the_mysql_data_adapter/${fmtArchPath(ctx)}/${prefix[plat]}_mysql_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB OCL Connector"}, platform: {name: "SLES 12"}}, + (ctx) => `ocl_connector/${ctx.product.version}/04_open_client_library/01_installing_and_configuring_the_ocl_connector/install_on_linux_using_edb_repo/${fmtArchPath(ctx)}/${prefix[plat]}_ocl_connector14_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB OCL Connector"}, platform: {name: "SLES 15"}}, + (ctx) => `ocl_connector/${ctx.product.version}/04_open_client_library/01_installing_and_configuring_the_ocl_connector/install_on_linux_using_edb_repo/${fmtArchPath(ctx)}/${prefix[plat]}_ocl_connector14_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB ODBC Connector"}, platform: {name: "SLES 12"}}, + (ctx) => `odbc_connector/13/03_installing_edb_odbc/01_installing_linux/${fmtArchPath(ctx)}/${prefix[plat]}_odbc13_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB ODBC Connector"}, platform: {name: "SLES 15"}}, + (ctx) => `odbc_connector/13/03_installing_edb_odbc/01_installing_linux/${fmtArchPath(ctx)}/${prefix[plat]}_odbc13_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB PgpoolII", version: 4.3}, platform: {name: "SLES 12"}}, + (ctx) => `pgpool/4.3/01_installing_and_configuring_the_pgpool-II/${fmtArchPath(ctx)}/${prefix[plat]}_pgpool_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB PgpoolII", version: 4.3}, platform: {name: "SLES 15"}}, + (ctx) => `pgpool/4.3/01_installing_and_configuring_the_pgpool-II/${fmtArchPath(ctx)}/${prefix[plat]}_pgpool_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB PgpoolII Extensions", version: 4.3}, platform: {name: "SLES 12"}}, + (ctx) => `pgpool/4.3/02_extensions/${fmtArchPath(ctx)}/${prefix[plat]}_pgpoolext_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "EDB PgpoolII Extensions", version: 4.3}, platform: {name: "SLES 15"}}, + (ctx) => `pgpool/4.3/02_extensions/${fmtArchPath(ctx)}/${prefix[plat]}_pgpoolext_sles15_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "PostGIS", version: 14}, platform: {name: "SLES 12"}}, + (ctx) => `postgis/14/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/${prefix[plat]}_postgis_sles12_${fmtArchFilename(ctx)}.mdx`), + when({product: {name: "PostGIS", version: 14}, platform: {name: "SLES 15"}}, + (ctx) => `postgis/14/01a_installing_postgis/installing_on_linux/${fmtArchPath(ctx)}/${prefix[plat]}_postgis_sles15_${fmtArchFilename(ctx)}.mdx`), + ); - file = - [ - prefix[plat], - abrev_product[product_stub], - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + function match(context, ...conditions) { + for (let test of conditions) { + const result = test(context); + if (result !== false && result !== null) return result; + } + return null; + } - default: - dirpath = [ - destPath, - abrev_product[product_stub], - context.product.version.toString().replace(/\..*/, ""), - [ - product_prefix[product_stub], - "installing", - abrev_product[product_stub], - ].join("_"), - "install_on_linux", - expand_arch[context.platform.arch], - ].join("/"); + function when(pattern, resultFn) { + return (ctx) => isMatch(ctx, pattern) && resultFn(ctx); + } - file = - [ - prefix[plat], - abrev_product[product_stub] + - context.product.version.toString().replace(/\..*/, ""), - context.platform.name.toLowerCase().replace(/ /g, ""), - context.platform.arch.replace(/_?64/g, ""), - ].join("_") + ".mdx"; - break; + if (!destFilename) { + return { note: `Skipping (no mapping): ${srcFilename}`, context }; } - const src = path.resolve(__dirname, "renders", filename); - const dest = path.resolve(__dirname, dirpath, file); + const src = path.resolve(__dirname, "renders", srcFilename); + const dest = path.resolve(__dirname, destPath, destFilename); try { await fs.mkdir(path.dirname(dest), { recursive: true }); await fs.copyFile(src, dest); - console.log(`deployed ${src} to ${dest}`); + return { success: `deployed ${src} to ${dest}` }; } catch (err) { - console.warn(err.toString(), { - src, - dest, - }); + return { + warn: err.toString(), + context: { + src, + dest, + }, + }; } }; diff --git a/install_template/package-lock.json b/install_template/package-lock.json index 88a6ed3df03..6d7db8d6f3f 100644 --- a/install_template/package-lock.json +++ b/install_template/package-lock.json @@ -9,6 +9,7 @@ "version": "1.0.0", "license": "ISC", "dependencies": { + "lodash.ismatch": "^4.4.0", "nunjucks": "^3.2.3", "prettier": "^2.4.0", "yaml": "^1.10.2" @@ -32,6 +33,11 @@ "node": ">= 6" } }, + "node_modules/lodash.ismatch": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==" + }, "node_modules/nunjucks": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.3.tgz", @@ -92,6 +98,11 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" }, + "lodash.ismatch": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz", + "integrity": "sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==" + }, "nunjucks": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.3.tgz", diff --git a/install_template/package.json b/install_template/package.json index 98b76907c43..be2b8ad93fc 100644 --- a/install_template/package.json +++ b/install_template/package.json @@ -10,6 +10,7 @@ "author": "", "license": "ISC", "dependencies": { + "lodash.ismatch": "^4.4.0", "nunjucks": "^3.2.3", "prettier": "^2.4.0", "yaml": "^1.10.2" From 3da9047d667d2c560c10e473dc5ec296e185e5ef Mon Sep 17 00:00:00 2001 From: Jon Ericson Date: Wed, 8 Jun 2022 14:59:26 -0700 Subject: [PATCH 171/180] Add instructions for deploy --- install_template/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install_template/README.md b/install_template/README.md index 4372477f5ce..3ec6c4879f2 100644 --- a/install_template/README.md +++ b/install_template/README.md @@ -7,7 +7,8 @@ This script allows the generation of product instalation docs for many different The following commands can be run from the Docs project directory. - `npm run install-docs:build` — Renders the templates and generates the final install doc files. -- `npm run install-docs:rebuild-docker-container` — Rebuilds the docker container used to render templates. +- `npm run install-docs:deploy` — Deploys the final install doc files to their final location. +- `npm run install-docs:rebuild-docker-image` — Rebuilds the docker container used to render templates. ## Configuration From ccf6c6cb0c4a05154079dc2bb5bbb127b0fef880 Mon Sep 17 00:00:00 2001 From: Josh Heyer Date: Fri, 20 Aug 2021 20:29:26 +0000 Subject: [PATCH 172/180] Install & initialize LFS in the container --- .devcontainer/Dockerfile | 57 ++- .devcontainer/devcontainer.json | 9 +- .../library-scripts/common-debian.sh | 482 ++++++++++++++++++ .../docker-in-docker-debian.sh | 194 +++++-- .../library-scripts/git-lfs-debian.sh | 194 +++++++ 5 files changed, 889 insertions(+), 47 deletions(-) create mode 100644 .devcontainer/library-scripts/common-debian.sh create mode 100644 .devcontainer/library-scripts/git-lfs-debian.sh diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 463f365f241..d689a037949 100755 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,19 +1,12 @@ -#------------------------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. -#------------------------------------------------------------------------------------------------------------- +## Source: https://github.com/microsoft/vscode-dev-containers/blob/main/containers/python-3/.devcontainer/Dockerfile -# To fully customize the contents of this image, use the following Dockerfile instead: -# https://github.com/microsoft/vscode-dev-containers/blob/master/containers/python-3/.devcontainer/Dockerfile - -# [Choice] Python version: 3, 3.8, 3.7, 3.6 -ARG VARIANT=3 +# [Choice] Python version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.10, 3.9, 3.8, 3.7, 3.6, 3-bullseye, 3.10-bullseye, 3.9-bullseye, 3.8-bullseye, 3.7-bullseye, 3.6-bullseye, 3-buster, 3.10-buster, 3.9-buster, 3.8-buster, 3.7-buster, 3.6-buster +ARG VARIANT=3-bullseye FROM mcr.microsoft.com/vscode/devcontainers/python:${VARIANT} -# [Option] Install Node.js -ARG INSTALL_NODE="true" +# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10 ARG NODE_VERSION="lts/*" -RUN if [ "${INSTALL_NODE}" = "true" ]; then su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi +RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi # [Optional] If your pip requirements rarely change, uncomment this section to add them to the image. # COPY requirements.txt /tmp/pip-tmp/ @@ -24,14 +17,50 @@ RUN if [ "${INSTALL_NODE}" = "true" ]; then su vscode -c "source /usr/local/shar # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ # && apt-get -y install --no-install-recommends +# [Optional] Uncomment this line to install global node packages. +# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g " 2>&1 + # latest gatsby RUN su vscode -c "source /usr/local/share/nvm/nvm.sh \ && npm install -g gatsby-cli" 2>&1 -# Enable docker-in-docker (see: https://github.com/microsoft/vscode-dev-containers/blob/master/script-library/docs/docker-in-docker.md) +## Git LFS: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/git-lfs.md +COPY library-scripts/git-lfs-debian.sh /tmp/library-scripts/ +RUN apt-get update && bash /tmp/library-scripts/git-lfs-debian.sh + +## Enable docker-in-docker (see: https://github.com/microsoft/vscode-dev-containers/blob/master/script-library/docs/docker-in-docker.md) + +# [Option] Install zsh +ARG INSTALL_ZSH="true" +# [Option] Upgrade OS packages to their latest versions +ARG UPGRADE_PACKAGES="false" +# [Option] Enable non-root Docker access in container +ARG ENABLE_NONROOT_DOCKER="true" +# [Option] Use the OSS Moby Engine instead of the licensed Docker Engine +ARG USE_MOBY="true" +# [Option] Engine/CLI Version +ARG DOCKER_VERSION="latest" + +# Enable new "BUILDKIT" mode for Docker CLI +ENV DOCKER_BUILDKIT=1 + +# Install needed packages and setup non-root user. Use a separate RUN statement to add your +# own dependencies. A user of "automatic" attempts to reuse an user ID if one already exists. +ARG USERNAME=automatic +ARG USER_UID=1000 +ARG USER_GID=$USER_UID COPY library-scripts/*.sh /tmp/library-scripts/ RUN apt-get update \ - && /bin/bash /tmp/library-scripts/docker-in-docker-debian.sh + && /bin/bash /tmp/library-scripts/common-debian.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "${UPGRADE_PACKAGES}" "true" "true" \ + # Use Docker script from script library to set things up + && /bin/bash /tmp/library-scripts/docker-in-docker-debian.sh "${ENABLE_NONROOT_DOCKER}" "${USERNAME}" "${USE_MOBY}" "${DOCKER_VERSION}" \ + # Clean up + && apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts/ + + +## env +RUN curl -sfL https://direnv.net/install.sh | bash + ENTRYPOINT ["/usr/local/share/docker-init.sh"] VOLUME [ "/var/lib/docker" ] CMD ["sleep", "infinity"] diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8bb9d6cabb4..78cde877c5c 100755 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,7 +5,7 @@ // Set *default* container specific settings.json values on container create. "settings": { - "terminal.integrated.shell.linux": "/bin/bash" + "terminal.integrated.shell.linux": "/usr/bin/zsh" }, // Add the IDs of extensions you want installed when the container is created. @@ -17,11 +17,12 @@ ], // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [8000], - "appPort": [8000], + "forwardPorts": [8000], // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "npm install", + // this configures NPM (without icons unless NPM_TOKEN is configured) and direnv (for root only) + // for icons, will still need to create & edit .env.development + "postCreateCommand": "echo 'eval \"$(direnv hook bash)\"' >> ~/.bashrc && echo 'eval \"$(direnv hook zsh)\"' >> ~/.zshrc && ([ ! -f .envrc ] || direnv allow) && direnv exec . npm run setup", // docker in docker (https://github.com/microsoft/vscode-dev-containers/blob/master/script-library/docs/docker-in-docker.md) "runArgs": ["--init", "--privileged"], diff --git a/.devcontainer/library-scripts/common-debian.sh b/.devcontainer/library-scripts/common-debian.sh new file mode 100644 index 00000000000..b6549190bc8 --- /dev/null +++ b/.devcontainer/library-scripts/common-debian.sh @@ -0,0 +1,482 @@ +#!/usr/bin/env bash +#------------------------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. +#------------------------------------------------------------------------------------------------------------- +# +# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/common.md +# Maintainer: The VS Code and Codespaces Teams +# +# Syntax: ./common-debian.sh [install zsh flag] [username] [user UID] [user GID] [upgrade packages flag] [install Oh My Zsh! flag] [Add non-free packages] + +set -e + +INSTALL_ZSH=${1:-"true"} +USERNAME=${2:-"automatic"} +USER_UID=${3:-"automatic"} +USER_GID=${4:-"automatic"} +UPGRADE_PACKAGES=${5:-"true"} +INSTALL_OH_MYS=${6:-"true"} +ADD_NON_FREE_PACKAGES=${7:-"false"} +SCRIPT_DIR="$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)" +MARKER_FILE="/usr/local/etc/vscode-dev-containers/common" + + +if [ "$(id -u)" -ne 0 ]; then + echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' + exit 1 +fi + +# Ensure that login shells get the correct path if the user updated the PATH using ENV. +rm -f /etc/profile.d/00-restore-env.sh +echo "export PATH=${PATH//$(sh -lc 'echo $PATH')/\$PATH}" > /etc/profile.d/00-restore-env.sh +chmod +x /etc/profile.d/00-restore-env.sh + +# If in automatic mode, determine if a user already exists, if not use vscode +if [ "${USERNAME}" = "auto" ] || [ "${USERNAME}" = "automatic" ]; then + USERNAME="" + POSSIBLE_USERS=("vscode" "node" "codespace" "$(awk -v val=1000 -F ":" '$3==val{print $1}' /etc/passwd)") + for CURRENT_USER in ${POSSIBLE_USERS[@]}; do + if id -u ${CURRENT_USER} > /dev/null 2>&1; then + USERNAME=${CURRENT_USER} + break + fi + done + if [ "${USERNAME}" = "" ]; then + USERNAME=vscode + fi +elif [ "${USERNAME}" = "none" ]; then + USERNAME=root + USER_UID=0 + USER_GID=0 +fi + +# Load markers to see which steps have already run +if [ -f "${MARKER_FILE}" ]; then + echo "Marker file found:" + cat "${MARKER_FILE}" + source "${MARKER_FILE}" +fi + +# Ensure apt is in non-interactive to avoid prompts +export DEBIAN_FRONTEND=noninteractive + +# Function to call apt-get if needed +apt_get_update_if_needed() +{ + if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then + echo "Running apt-get update..." + apt-get update + else + echo "Skipping apt-get update." + fi +} + +# Run install apt-utils to avoid debconf warning then verify presence of other common developer tools and dependencies +if [ "${PACKAGES_ALREADY_INSTALLED}" != "true" ]; then + + package_list="apt-utils \ + openssh-client \ + gnupg2 \ + dirmngr \ + iproute2 \ + procps \ + lsof \ + htop \ + net-tools \ + psmisc \ + curl \ + wget \ + rsync \ + ca-certificates \ + unzip \ + zip \ + nano \ + vim-tiny \ + less \ + jq \ + lsb-release \ + apt-transport-https \ + dialog \ + libc6 \ + libgcc1 \ + libkrb5-3 \ + libgssapi-krb5-2 \ + libicu[0-9][0-9] \ + liblttng-ust0 \ + libstdc++6 \ + zlib1g \ + locales \ + sudo \ + ncdu \ + man-db \ + strace \ + manpages \ + manpages-dev \ + init-system-helpers" + + # Needed for adding manpages-posix and manpages-posix-dev which are non-free packages in Debian + if [ "${ADD_NON_FREE_PACKAGES}" = "true" ]; then + # Bring in variables from /etc/os-release like VERSION_CODENAME + . /etc/os-release + sed -i -E "s/deb http:\/\/(deb|httpredir)\.debian\.org\/debian ${VERSION_CODENAME} main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME} main contrib non-free/" /etc/apt/sources.list + sed -i -E "s/deb-src http:\/\/(deb|httredir)\.debian\.org\/debian ${VERSION_CODENAME} main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME} main contrib non-free/" /etc/apt/sources.list + sed -i -E "s/deb http:\/\/(deb|httpredir)\.debian\.org\/debian ${VERSION_CODENAME}-updates main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME}-updates main contrib non-free/" /etc/apt/sources.list + sed -i -E "s/deb-src http:\/\/(deb|httpredir)\.debian\.org\/debian ${VERSION_CODENAME}-updates main/deb http:\/\/\1\.debian\.org\/debian ${VERSION_CODENAME}-updates main contrib non-free/" /etc/apt/sources.list + sed -i "s/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main contrib non-free/" /etc/apt/sources.list + sed -i "s/deb-src http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}\/updates main contrib non-free/" /etc/apt/sources.list + sed -i "s/deb http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main/deb http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main contrib non-free/" /etc/apt/sources.list + sed -i "s/deb-src http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main/deb http:\/\/deb\.debian\.org\/debian ${VERSION_CODENAME}-backports main contrib non-free/" /etc/apt/sources.list + # Handle bullseye location for security https://www.debian.org/releases/bullseye/amd64/release-notes/ch-information.en.html + sed -i "s/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main contrib non-free/" /etc/apt/sources.list + sed -i "s/deb-src http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main/deb http:\/\/security\.debian\.org\/debian-security ${VERSION_CODENAME}-security main contrib non-free/" /etc/apt/sources.list + echo "Running apt-get update..." + apt-get update + package_list="${package_list} manpages-posix manpages-posix-dev" + else + apt_get_update_if_needed + fi + + # Install libssl1.1 if available + if [[ ! -z $(apt-cache --names-only search ^libssl1.1$) ]]; then + package_list="${package_list} libssl1.1" + fi + + # Install appropriate version of libssl1.0.x if available + libssl_package=$(dpkg-query -f '${db:Status-Abbrev}\t${binary:Package}\n' -W 'libssl1\.0\.?' 2>&1 || echo '') + if [ "$(echo "$LIlibssl_packageBSSL" | grep -o 'libssl1\.0\.[0-9]:' | uniq | sort | wc -l)" -eq 0 ]; then + if [[ ! -z $(apt-cache --names-only search ^libssl1.0.2$) ]]; then + # Debian 9 + package_list="${package_list} libssl1.0.2" + elif [[ ! -z $(apt-cache --names-only search ^libssl1.0.0$) ]]; then + # Ubuntu 18.04, 16.04, earlier + package_list="${package_list} libssl1.0.0" + fi + fi + + echo "Packages to verify are installed: ${package_list}" + apt-get -y install --no-install-recommends ${package_list} 2> >( grep -v 'debconf: delaying package configuration, since apt-utils is not installed' >&2 ) + + # Install git if not already installed (may be more recent than distro version) + if ! type git > /dev/null 2>&1; then + apt-get -y install --no-install-recommends git + fi + + PACKAGES_ALREADY_INSTALLED="true" +fi + +# Get to latest versions of all packages +if [ "${UPGRADE_PACKAGES}" = "true" ]; then + apt_get_update_if_needed + apt-get -y upgrade --no-install-recommends + apt-get autoremove -y +fi + +# Ensure at least the en_US.UTF-8 UTF-8 locale is available. +# Common need for both applications and things like the agnoster ZSH theme. +if [ "${LOCALE_ALREADY_SET}" != "true" ] && ! grep -o -E '^\s*en_US.UTF-8\s+UTF-8' /etc/locale.gen > /dev/null; then + echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen + locale-gen + LOCALE_ALREADY_SET="true" +fi + +# Create or update a non-root user to match UID/GID. +if id -u ${USERNAME} > /dev/null 2>&1; then + # User exists, update if needed + if [ "${USER_GID}" != "automatic" ] && [ "$USER_GID" != "$(id -G $USERNAME)" ]; then + groupmod --gid $USER_GID $USERNAME + usermod --gid $USER_GID $USERNAME + fi + if [ "${USER_UID}" != "automatic" ] && [ "$USER_UID" != "$(id -u $USERNAME)" ]; then + usermod --uid $USER_UID $USERNAME + fi +else + # Create user + if [ "${USER_GID}" = "automatic" ]; then + groupadd $USERNAME + else + groupadd --gid $USER_GID $USERNAME + fi + if [ "${USER_UID}" = "automatic" ]; then + useradd -s /bin/bash --gid $USERNAME -m $USERNAME + else + useradd -s /bin/bash --uid $USER_UID --gid $USERNAME -m $USERNAME + fi +fi + +# Add add sudo support for non-root user +if [ "${USERNAME}" != "root" ] && [ "${EXISTING_NON_ROOT_USER}" != "${USERNAME}" ]; then + echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME + chmod 0440 /etc/sudoers.d/$USERNAME + EXISTING_NON_ROOT_USER="${USERNAME}" +fi + +# ** Shell customization section ** +if [ "${USERNAME}" = "root" ]; then + user_rc_path="/root" +else + user_rc_path="/home/${USERNAME}" +fi + +# Restore user .bashrc defaults from skeleton file if it doesn't exist or is empty +if [ ! -f "${user_rc_path}/.bashrc" ] || [ ! -s "${user_rc_path}/.bashrc" ] ; then + cp /etc/skel/.bashrc "${user_rc_path}/.bashrc" +fi + +# Restore user .profile defaults from skeleton file if it doesn't exist or is empty +if [ ! -f "${user_rc_path}/.profile" ] || [ ! -s "${user_rc_path}/.profile" ] ; then + cp /etc/skel/.profile "${user_rc_path}/.profile" +fi + +# .bashrc/.zshrc snippet +rc_snippet="$(cat << 'EOF' + +if [ -z "${USER}" ]; then export USER=$(whoami); fi +if [[ "${PATH}" != *"$HOME/.local/bin"* ]]; then export PATH="${PATH}:$HOME/.local/bin"; fi + +# Display optional first run image specific notice if configured and terminal is interactive +if [ -t 1 ] && [[ "${TERM_PROGRAM}" = "vscode" || "${TERM_PROGRAM}" = "codespaces" ]] && [ ! -f "$HOME/.config/vscode-dev-containers/first-run-notice-already-displayed" ]; then + if [ -f "/usr/local/etc/vscode-dev-containers/first-run-notice.txt" ]; then + cat "/usr/local/etc/vscode-dev-containers/first-run-notice.txt" + elif [ -f "/workspaces/.codespaces/shared/first-run-notice.txt" ]; then + cat "/workspaces/.codespaces/shared/first-run-notice.txt" + fi + mkdir -p "$HOME/.config/vscode-dev-containers" + # Mark first run notice as displayed after 10s to avoid problems with fast terminal refreshes hiding it + ((sleep 10s; touch "$HOME/.config/vscode-dev-containers/first-run-notice-already-displayed") &) +fi + +# Set the default git editor if not already set +if [ -z "$(git config --get core.editor)" ] && [ -z "${GIT_EDITOR}" ]; then + if [ "${TERM_PROGRAM}" = "vscode" ]; then + if [[ -n $(command -v code-insiders) && -z $(command -v code) ]]; then + export GIT_EDITOR="code-insiders --wait" + else + export GIT_EDITOR="code --wait" + fi + fi +fi + +EOF +)" + +# code shim, it fallbacks to code-insiders if code is not available +cat << 'EOF' > /usr/local/bin/code +#!/bin/sh + +get_in_path_except_current() { + which -a "$1" | grep -A1 "$0" | grep -v "$0" +} + +code="$(get_in_path_except_current code)" + +if [ -n "$code" ]; then + exec "$code" "$@" +elif [ "$(command -v code-insiders)" ]; then + exec code-insiders "$@" +else + echo "code or code-insiders is not installed" >&2 + exit 127 +fi +EOF +chmod +x /usr/local/bin/code + +# systemctl shim - tells people to use 'service' if systemd is not running +cat << 'EOF' > /usr/local/bin/systemctl +#!/bin/sh +set -e +if [ -d "/run/systemd/system" ]; then + exec /bin/systemctl/systemctl "$@" +else + echo '\n"systemd" is not running in this container due to its overhead.\nUse the "service" command to start services intead. e.g.: \n\nservice --status-all' +fi +EOF +chmod +x /usr/local/bin/systemctl + +# Codespaces bash and OMZ themes - partly inspired by https://github.com/ohmyzsh/ohmyzsh/blob/master/themes/robbyrussell.zsh-theme +codespaces_bash="$(cat \ +<<'EOF' + +# Codespaces bash prompt theme +__bash_prompt() { + local userpart='`export XIT=$? \ + && [ ! -z "${GITHUB_USER}" ] && echo -n "\[\033[0;32m\]@${GITHUB_USER} " || echo -n "\[\033[0;32m\]\u " \ + && [ "$XIT" -ne "0" ] && echo -n "\[\033[1;31m\]➜" || echo -n "\[\033[0m\]➜"`' + local gitbranch='`\ + export BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null || git rev-parse --short HEAD 2>/dev/null); \ + if [ "${BRANCH}" != "" ]; then \ + echo -n "\[\033[0;36m\](\[\033[1;31m\]${BRANCH}" \ + && if git ls-files --error-unmatch -m --directory --no-empty-directory -o --exclude-standard ":/*" > /dev/null 2>&1; then \ + echo -n " \[\033[1;33m\]✗"; \ + fi \ + && echo -n "\[\033[0;36m\]) "; \ + fi`' + local lightblue='\[\033[1;34m\]' + local removecolor='\[\033[0m\]' + PS1="${userpart} ${lightblue}\w ${gitbranch}${removecolor}\$ " + unset -f __bash_prompt +} +__bash_prompt + +EOF +)" + +codespaces_zsh="$(cat \ +<<'EOF' +# Codespaces zsh prompt theme +__zsh_prompt() { + local prompt_username + if [ ! -z "${GITHUB_USER}" ]; then + prompt_username="@${GITHUB_USER}" + else + prompt_username="%n" + fi + PROMPT="%{$fg[green]%}${prompt_username} %(?:%{$reset_color%}➜ :%{$fg_bold[red]%}➜ )" # User/exit code arrow + PROMPT+='%{$fg_bold[blue]%}%(5~|%-1~/…/%3~|%4~)%{$reset_color%} ' # cwd + PROMPT+='$(git_prompt_info)%{$fg[white]%}$ %{$reset_color%}' # Git status + unset -f __zsh_prompt +} +ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[cyan]%}(%{$fg_bold[red]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " +ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg_bold[yellow]%}✗%{$fg_bold[cyan]%})" +ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[cyan]%})" +__zsh_prompt + +EOF +)" + +# Add notice that Oh My Bash! has been removed from images and how to provide information on how to install manually +omb_readme="$(cat \ +<<'EOF' +"Oh My Bash!" has been removed from this image in favor of a simple shell prompt. If you +still wish to use it, remove "~/.oh-my-bash" and install it from: https://github.com/ohmybash/oh-my-bash +You may also want to consider "Bash-it" as an alternative: https://github.com/bash-it/bash-it +See here for infomation on adding it to your image or dotfiles: https://aka.ms/codespaces/omb-remove +EOF +)" +omb_stub="$(cat \ +<<'EOF' +#!/usr/bin/env bash +if [ -t 1 ]; then + cat $HOME/.oh-my-bash/README.md +fi +EOF +)" + +# Add RC snippet and custom bash prompt +if [ "${RC_SNIPPET_ALREADY_ADDED}" != "true" ]; then + echo "${rc_snippet}" >> /etc/bash.bashrc + echo "${codespaces_bash}" >> "${user_rc_path}/.bashrc" + echo 'export PROMPT_DIRTRIM=4' >> "${user_rc_path}/.bashrc" + if [ "${USERNAME}" != "root" ]; then + echo "${codespaces_bash}" >> "/root/.bashrc" + echo 'export PROMPT_DIRTRIM=4' >> "/root/.bashrc" + fi + chown ${USERNAME}:${USERNAME} "${user_rc_path}/.bashrc" + RC_SNIPPET_ALREADY_ADDED="true" +fi + +# Add stub for Oh My Bash! +if [ ! -d "${user_rc_path}/.oh-my-bash}" ] && [ "${INSTALL_OH_MYS}" = "true" ]; then + mkdir -p "${user_rc_path}/.oh-my-bash" "/root/.oh-my-bash" + echo "${omb_readme}" >> "${user_rc_path}/.oh-my-bash/README.md" + echo "${omb_stub}" >> "${user_rc_path}/.oh-my-bash/oh-my-bash.sh" + chmod +x "${user_rc_path}/.oh-my-bash/oh-my-bash.sh" + if [ "${USERNAME}" != "root" ]; then + echo "${omb_readme}" >> "/root/.oh-my-bash/README.md" + echo "${omb_stub}" >> "/root/.oh-my-bash/oh-my-bash.sh" + chmod +x "/root/.oh-my-bash/oh-my-bash.sh" + fi + chown -R "${USERNAME}:${USERNAME}" "${user_rc_path}/.oh-my-bash" +fi + +# Optionally install and configure zsh and Oh My Zsh! +if [ "${INSTALL_ZSH}" = "true" ]; then + if ! type zsh > /dev/null 2>&1; then + apt_get_update_if_needed + apt-get install -y zsh + fi + if [ "${ZSH_ALREADY_INSTALLED}" != "true" ]; then + echo "${rc_snippet}" >> /etc/zsh/zshrc + ZSH_ALREADY_INSTALLED="true" + fi + + # Adapted, simplified inline Oh My Zsh! install steps that adds, defaults to a codespaces theme. + # See https://github.com/ohmyzsh/ohmyzsh/blob/master/tools/install.sh for official script. + oh_my_install_dir="${user_rc_path}/.oh-my-zsh" + if [ ! -d "${oh_my_install_dir}" ] && [ "${INSTALL_OH_MYS}" = "true" ]; then + template_path="${oh_my_install_dir}/templates/zshrc.zsh-template" + user_rc_file="${user_rc_path}/.zshrc" + umask g-w,o-w + mkdir -p ${oh_my_install_dir} + git clone --depth=1 \ + -c core.eol=lf \ + -c core.autocrlf=false \ + -c fsck.zeroPaddedFilemode=ignore \ + -c fetch.fsck.zeroPaddedFilemode=ignore \ + -c receive.fsck.zeroPaddedFilemode=ignore \ + "https://github.com/ohmyzsh/ohmyzsh" "${oh_my_install_dir}" 2>&1 + echo -e "$(cat "${template_path}")\nDISABLE_AUTO_UPDATE=true\nDISABLE_UPDATE_PROMPT=true" > ${user_rc_file} + sed -i -e 's/ZSH_THEME=.*/ZSH_THEME="codespaces"/g' ${user_rc_file} + + mkdir -p ${oh_my_install_dir}/custom/themes + echo "${codespaces_zsh}" > "${oh_my_install_dir}/custom/themes/codespaces.zsh-theme" + # Shrink git while still enabling updates + cd "${oh_my_install_dir}" + git repack -a -d -f --depth=1 --window=1 + # Copy to non-root user if one is specified + if [ "${USERNAME}" != "root" ]; then + cp -rf "${user_rc_file}" "${oh_my_install_dir}" /root + chown -R ${USERNAME}:${USERNAME} "${user_rc_path}" + fi + fi +fi + +# Persist image metadata info, script if meta.env found in same directory +meta_info_script="$(cat << 'EOF' +#!/bin/sh +. /usr/local/etc/vscode-dev-containers/meta.env + +# Minimal output +if [ "$1" = "version" ] || [ "$1" = "image-version" ]; then + echo "${VERSION}" + exit 0 +elif [ "$1" = "release" ]; then + echo "${GIT_REPOSITORY_RELEASE}" + exit 0 +elif [ "$1" = "content" ] || [ "$1" = "content-url" ] || [ "$1" = "contents" ] || [ "$1" = "contents-url" ]; then + echo "${CONTENTS_URL}" + exit 0 +fi + +#Full output +echo +echo "Development container image information" +echo +if [ ! -z "${VERSION}" ]; then echo "- Image version: ${VERSION}"; fi +if [ ! -z "${DEFINITION_ID}" ]; then echo "- Definition ID: ${DEFINITION_ID}"; fi +if [ ! -z "${VARIANT}" ]; then echo "- Variant: ${VARIANT}"; fi +if [ ! -z "${GIT_REPOSITORY}" ]; then echo "- Source code repository: ${GIT_REPOSITORY}"; fi +if [ ! -z "${GIT_REPOSITORY_RELEASE}" ]; then echo "- Source code release/branch: ${GIT_REPOSITORY_RELEASE}"; fi +if [ ! -z "${BUILD_TIMESTAMP}" ]; then echo "- Timestamp: ${BUILD_TIMESTAMP}"; fi +if [ ! -z "${CONTENTS_URL}" ]; then echo && echo "More info: ${CONTENTS_URL}"; fi +echo +EOF +)" +if [ -f "${SCRIPT_DIR}/meta.env" ]; then + mkdir -p /usr/local/etc/vscode-dev-containers/ + cp -f "${SCRIPT_DIR}/meta.env" /usr/local/etc/vscode-dev-containers/meta.env + echo "${meta_info_script}" > /usr/local/bin/devcontainer-info + chmod +x /usr/local/bin/devcontainer-info +fi + +# Write marker file +mkdir -p "$(dirname "${MARKER_FILE}")" +echo -e "\ + PACKAGES_ALREADY_INSTALLED=${PACKAGES_ALREADY_INSTALLED}\n\ + LOCALE_ALREADY_SET=${LOCALE_ALREADY_SET}\n\ + EXISTING_NON_ROOT_USER=${EXISTING_NON_ROOT_USER}\n\ + RC_SNIPPET_ALREADY_ADDED=${RC_SNIPPET_ALREADY_ADDED}\n\ + ZSH_ALREADY_INSTALLED=${ZSH_ALREADY_INSTALLED}" > "${MARKER_FILE}" + +echo "Done!" \ No newline at end of file diff --git a/.devcontainer/library-scripts/docker-in-docker-debian.sh b/.devcontainer/library-scripts/docker-in-docker-debian.sh index 40c7a695482..118ebe92b8d 100644 --- a/.devcontainer/library-scripts/docker-in-docker-debian.sh +++ b/.devcontainer/library-scripts/docker-in-docker-debian.sh @@ -4,14 +4,17 @@ # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- # -# Docs: https://github.com/microsoft/vscode-dev-containers/blob/master/script-library/docs/docker-in-docker.md +# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/docker-in-docker.md # Maintainer: The VS Code and Codespaces Teams # -# Syntax: ./docker-in-docker-debian.sh [enable non-root docker access flag] [non-root user] [use moby] +# Syntax: ./docker-in-docker-debian.sh [enable non-root docker access flag] [non-root user] [use moby] [Engine/CLI Version] ENABLE_NONROOT_DOCKER=${1:-"true"} USERNAME=${2:-"automatic"} USE_MOBY=${3:-"true"} +DOCKER_VERSION=${4:-"latest"} # The Docker/Moby Engine + CLI should match in version +MICROSOFT_GPG_KEYS_URI="https://packages.microsoft.com/keys/microsoft.asc" +DOCKER_DASH_COMPOSE_VERSION="1" set -e @@ -37,8 +40,23 @@ elif [ "${USERNAME}" = "none" ] || ! id -u ${USERNAME} > /dev/null 2>&1; then USERNAME=root fi +# Get central common setting +get_common_setting() { + if [ "${common_settings_file_loaded}" != "true" ]; then + curl -sfL "https://aka.ms/vscode-dev-containers/script-library/settings.env" 2>/dev/null -o /tmp/vsdc-settings.env || echo "Could not download settings file. Skipping." + common_settings_file_loaded=true + fi + if [ -f "/tmp/vsdc-settings.env" ]; then + local multi_line="" + if [ "$2" = "true" ]; then multi_line="-z"; fi + local result="$(grep ${multi_line} -oP "$1=\"?\K[^\"]+" /tmp/vsdc-settings.env | tr -d '\0')" + if [ ! -z "${result}" ]; then declare -g $1="${result}"; fi + fi + echo "$1=${!1}" +} + # Function to run apt-get if needed -apt-get-update-if-needed() +apt_get_update_if_needed() { if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then echo "Running apt-get update..." @@ -48,47 +66,164 @@ apt-get-update-if-needed() fi } +# Checks if packages are installed and installs them if not +check_packages() { + if ! dpkg -s "$@" > /dev/null 2>&1; then + apt_get_update_if_needed + apt-get -y install --no-install-recommends "$@" + fi +} + +# Figure out correct version of a three part version number is not passed +find_version_from_git_tags() { + local variable_name=$1 + local requested_version=${!variable_name} + if [ "${requested_version}" = "none" ]; then return; fi + local repository=$2 + local prefix=${3:-"tags/v"} + local separator=${4:-"."} + local last_part_optional=${5:-"false"} + if [ "$(echo "${requested_version}" | grep -o "." | wc -l)" != "2" ]; then + local escaped_separator=${separator//./\\.} + local last_part + if [ "${last_part_optional}" = "true" ]; then + last_part="(${escaped_separator}[0-9]+)?" + else + last_part="${escaped_separator}[0-9]+" + fi + local regex="${prefix}\\K[0-9]+${escaped_separator}[0-9]+${last_part}$" + local version_list="$(git ls-remote --tags ${repository} | grep -oP "${regex}" | tr -d ' ' | tr "${separator}" "." | sort -rV)" + if [ "${requested_version}" = "latest" ] || [ "${requested_version}" = "current" ] || [ "${requested_version}" = "lts" ]; then + declare -g ${variable_name}="$(echo "${version_list}" | head -n 1)" + else + set +e + declare -g ${variable_name}="$(echo "${version_list}" | grep -E -m 1 "^${requested_version//./\\.}([\\.\\s]|$)")" + set -e + fi + fi + if [ -z "${!variable_name}" ] || ! echo "${version_list}" | grep "^${!variable_name//./\\.}$" > /dev/null 2>&1; then + echo -e "Invalid ${variable_name} value: ${requested_version}\nValid values:\n${version_list}" >&2 + exit 1 + fi + echo "${variable_name}=${!variable_name}" +} + # Ensure apt is in non-interactive to avoid prompts export DEBIAN_FRONTEND=noninteractive -# Install docker/dockerd dependencies if missing -if ! dpkg -s apt-transport-https curl ca-certificates lsb-release lxc pigz iptables > /dev/null 2>&1 || ! type gpg > /dev/null 2>&1; then - apt-get-update-if-needed - apt-get -y install --no-install-recommends apt-transport-https curl ca-certificates lsb-release lxc pigz iptables gnupg2 +# Install dependencies +check_packages apt-transport-https curl ca-certificates lxc pigz iptables gnupg2 dirmngr +if ! type git > /dev/null 2>&1; then + apt_get_update_if_needed + apt-get -y install git fi # Swap to legacy iptables for compatibility -update-alternatives --set iptables /usr/sbin/iptables-legacy -update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy +if type iptables-legacy > /dev/null 2>&1; then + update-alternatives --set iptables /usr/sbin/iptables-legacy + update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy +fi + +# Source /etc/os-release to get OS info +. /etc/os-release +# Fetch host/container arch. +architecture="$(dpkg --print-architecture)" + +# Set up the necessary apt repos (either Microsoft's or Docker's) +if [ "${USE_MOBY}" = "true" ]; then + + # Name of open source engine/cli + engine_package_name="moby-engine" + cli_package_name="moby-cli" + + # Import key safely and import Microsoft apt repo + get_common_setting MICROSOFT_GPG_KEYS_URI + curl -sSL ${MICROSOFT_GPG_KEYS_URI} | gpg --dearmor > /usr/share/keyrings/microsoft-archive-keyring.gpg + echo "deb [arch=${architecture} signed-by=/usr/share/keyrings/microsoft-archive-keyring.gpg] https://packages.microsoft.com/repos/microsoft-${ID}-${VERSION_CODENAME}-prod ${VERSION_CODENAME} main" > /etc/apt/sources.list.d/microsoft.list +else + # Name of licensed engine/cli + engine_package_name="docker-ce" + cli_package_name="docker-ce-cli" + + # Import key safely and import Docker apt repo + curl -fsSL https://download.docker.com/linux/${ID}/gpg | gpg --dearmor > /usr/share/keyrings/docker-archive-keyring.gpg + echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/${ID} ${VERSION_CODENAME} stable" > /etc/apt/sources.list.d/docker.list +fi + +# Refresh apt lists +apt-get update + +# Soft version matching +if [ "${DOCKER_VERSION}" = "latest" ] || [ "${DOCKER_VERSION}" = "lts" ] || [ "${DOCKER_VERSION}" = "stable" ]; then + # Empty, meaning grab whatever "latest" is in apt repo + engine_version_suffix="" + cli_version_suffix="" +else + # Fetch a valid version from the apt-cache (eg: the Microsoft repo appends +azure, breakfix, etc...) + docker_version_dot_escaped="${DOCKER_VERSION//./\\.}" + docker_version_dot_plus_escaped="${docker_version_dot_escaped//+/\\+}" + # Regex needs to handle debian package version number format: https://www.systutorials.com/docs/linux/man/5-deb-version/ + docker_version_regex="^(.+:)?${docker_version_dot_plus_escaped}([\\.\\+ ~:-]|$)" + set +e # Don't exit if finding version fails - will handle gracefully + cli_version_suffix="=$(apt-cache madison ${cli_package_name} | awk -F"|" '{print $2}' | sed -e 's/^[ \t]*//' | grep -E -m 1 "${docker_version_regex}")" + engine_version_suffix="=$(apt-cache madison ${engine_package_name} | awk -F"|" '{print $2}' | sed -e 's/^[ \t]*//' | grep -E -m 1 "${docker_version_regex}")" + set -e + if [ -z "${engine_version_suffix}" ] || [ "${engine_version_suffix}" = "=" ] || [ -z "${cli_version_suffix}" ] || [ "${cli_version_suffix}" = "=" ] ; then + echo "(!) No full or partial Docker / Moby version match found for \"${DOCKER_VERSION}\" on OS ${ID} ${VERSION_CODENAME} (${architecture}). Available versions:" + apt-cache madison ${cli_package_name} | awk -F"|" '{print $2}' | grep -oP '^(.+:)?\K.+' + exit 1 + fi + echo "engine_version_suffix ${engine_version_suffix}" + echo "cli_version_suffix ${cli_version_suffix}" +fi # Install Docker / Moby CLI if not already installed if type docker > /dev/null 2>&1 && type dockerd > /dev/null 2>&1; then echo "Docker / Moby CLI and Engine already installed." else if [ "${USE_MOBY}" = "true" ]; then - DISTRO=$(lsb_release -is | tr '[:upper:]' '[:lower:]') - CODENAME=$(lsb_release -cs) - curl -s https://packages.microsoft.com/keys/microsoft.asc | (OUT=$(apt-key add - 2>&1) || echo $OUT) - echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-${DISTRO}-${CODENAME}-prod ${CODENAME} main" > /etc/apt/sources.list.d/microsoft.list - apt-get update - apt-get -y install --no-install-recommends moby-cli moby-engine + apt-get -y install --no-install-recommends moby-cli${cli_version_suffix} moby-buildx moby-engine${engine_version_suffix} + apt-get -y install --no-install-recommends moby-compose || echo "(*) Package moby-compose (Docker Compose v2) not available for OS ${ID} ${VERSION_CODENAME} (${architecture}). Skipping." else - curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | (OUT=$(apt-key add - 2>&1) || echo $OUT) - echo "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list - apt-get update - apt-get -y install --no-install-recommends docker-ce-cli docker-ce + apt-get -y install --no-install-recommends docker-ce-cli${cli_version_suffix} docker-ce${engine_version_suffix} fi fi -echo "Finished installing docker / moby" +echo "Finished installing docker / moby!" -# Install Docker Compose if not already installed +# Install Docker Compose if not already installed and is on a supported architecture if type docker-compose > /dev/null 2>&1; then echo "Docker Compose already installed." else - LATEST_COMPOSE_VERSION=$(curl -sSL "https://api.github.com/repos/docker/compose/releases/latest" | grep -o -P '(?<="tag_name": ").+(?=")') - curl -sSL "https://github.com/docker/compose/releases/download/${LATEST_COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose - chmod +x /usr/local/bin/docker-compose + target_compose_arch="${architecture}" + if [ "${target_compose_arch}" = "amd64" ]; then + target_compose_arch="x86_64" + fi + if [ "${target_compose_arch}" != "x86_64" ]; then + # Use pip to get a version that runns on this architecture + if ! dpkg -s python3-minimal python3-pip libffi-dev python3-venv > /dev/null 2>&1; then + apt_get_update_if_needed + apt-get -y install python3-minimal python3-pip libffi-dev python3-venv + fi + export PIPX_HOME=/usr/local/pipx + mkdir -p ${PIPX_HOME} + export PIPX_BIN_DIR=/usr/local/bin + export PYTHONUSERBASE=/tmp/pip-tmp + export PIP_CACHE_DIR=/tmp/pip-tmp/cache + pipx_bin=pipx + if ! type pipx > /dev/null 2>&1; then + pip3 install --disable-pip-version-check --no-warn-script-location --no-cache-dir --user pipx + pipx_bin=/tmp/pip-tmp/bin/pipx + fi + ${pipx_bin} install --system-site-packages --pip-args '--no-cache-dir --force-reinstall' docker-compose + rm -rf /tmp/pip-tmp + else + # Only supports docker-compose v1 + find_version_from_git_tags DOCKER_DASH_COMPOSE_VERSION "https://github.com/docker/compose" "tags/" + echo "(*) Installing docker-compose ${DOCKER_DASH_COMPOSE_VERSION}..." + curl -fsSL "https://github.com/docker/compose/releases/download/${DOCKER_DASH_COMPOSE_VERSION}/docker-compose-Linux-x86_64" -o /usr/local/bin/docker-compose + chmod +x /usr/local/bin/docker-compose + fi fi # If init file already exists, exit @@ -96,18 +231,19 @@ if [ -f "/usr/local/share/docker-init.sh" ]; then echo "/usr/local/share/docker-init.sh already exists, so exiting." exit 0 fi -echo "docker-init doesnt exist..." +echo "docker-init doesnt exist, adding..." # Add user to the docker group if [ "${ENABLE_NONROOT_DOCKER}" = "true" ]; then if ! getent group docker > /dev/null 2>&1; then groupadd docker fi - usermod -aG docker ${USERNAME} + + usermod -aG docker ${USERNAME} fi tee /usr/local/share/docker-init.sh > /dev/null \ -<< 'EOF' +<< 'EOF' #!/usr/bin/env bash #------------------------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. @@ -177,10 +313,10 @@ set -e set +e -# Execute whatever commands were passed in (if any). This allows us +# Execute whatever commands were passed in (if any). This allows us # to set this script to ENTRYPOINT while still executing the default CMD. exec "$@" EOF chmod +x /usr/local/share/docker-init.sh -chown ${USERNAME}:root /usr/local/share/docker-init.sh +chown ${USERNAME}:root /usr/local/share/docker-init.sh \ No newline at end of file diff --git a/.devcontainer/library-scripts/git-lfs-debian.sh b/.devcontainer/library-scripts/git-lfs-debian.sh new file mode 100644 index 00000000000..dd9e7022065 --- /dev/null +++ b/.devcontainer/library-scripts/git-lfs-debian.sh @@ -0,0 +1,194 @@ +#!/usr/bin/env bash +#------------------------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. +#------------------------------------------------------------------------------------------------------------- +# +# Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/git-lfs.md +# Maintainer: The VS Code and Codespaces Teams +# +# Syntax: ./git-lfs-debian.sh [version] + +GIT_LFS_VERSION=${1:-"latest"} +GIT_LFS_ARCHIVE_GPG_KEY_URI="https://packagecloud.io/github/git-lfs/gpgkey" +GIT_LFS_ARCHIVE_ARCHITECTURES="amd64" +GIT_LFS_ARCHIVE_VERSION_CODENAMES="stretch buster bullseye bionic focal" +GIT_LFS_CHECKSUM_GPG_KEYS="0x88ace9b29196305ba9947552f1ba225c0223b187 0x86cd3297749375bcf8206715f54fe648088335a9 0xaa3b3450295830d2de6db90caba67be5a5795889" +GPG_KEY_SERVERS="keyserver hkp://keyserver.ubuntu.com:80 +keyserver hkps://keys.openpgp.org +keyserver hkp://keyserver.pgp.com" + +set -e + +if [ "$(id -u)" -ne 0 ]; then + echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' + exit 1 +fi + +# Get central common setting +get_common_setting() { + if [ "${common_settings_file_loaded}" != "true" ]; then + curl -sfL "https://aka.ms/vscode-dev-containers/script-library/settings.env" 2>/dev/null -o /tmp/vsdc-settings.env || echo "Could not download settings file. Skipping." + common_settings_file_loaded=true + fi + if [ -f "/tmp/vsdc-settings.env" ]; then + local multi_line="" + if [ "$2" = "true" ]; then multi_line="-z"; fi + local result="$(grep ${multi_line} -oP "$1=\"?\K[^\"]+" /tmp/vsdc-settings.env | tr -d '\0')" + if [ ! -z "${result}" ]; then declare -g $1="${result}"; fi + fi + echo "$1=${!1}" +} + +# Figure out correct version of a three part version number is not passed +find_version_from_git_tags() { + local variable_name=$1 + local requested_version=${!variable_name} + if [ "${requested_version}" = "none" ]; then return; fi + local repository=$2 + local prefix=${3:-"tags/v"} + local separator=${4:-"."} + local last_part_optional=${5:-"false"} + if [ "$(echo "${requested_version}" | grep -o "." | wc -l)" != "2" ]; then + local escaped_separator=${separator//./\\.} + local last_part + if [ "${last_part_optional}" = "true" ]; then + last_part="(${escaped_separator}[0-9]+)?" + else + last_part="${escaped_separator}[0-9]+" + fi + local regex="${prefix}\\K[0-9]+${escaped_separator}[0-9]+${last_part}$" + local version_list="$(git ls-remote --tags ${repository} | grep -oP "${regex}" | tr -d ' ' | tr "${separator}" "." | sort -rV)" + if [ "${requested_version}" = "latest" ] || [ "${requested_version}" = "current" ] || [ "${requested_version}" = "lts" ]; then + declare -g ${variable_name}="$(echo "${version_list}" | head -n 1)" + else + set +e + declare -g ${variable_name}="$(echo "${version_list}" | grep -E -m 1 "^${requested_version//./\\.}([\\.\\s]|$)")" + set -e + fi + fi + if [ -z "${!variable_name}" ] || ! echo "${version_list}" | grep "^${!variable_name//./\\.}$" > /dev/null 2>&1; then + echo -e "Invalid ${variable_name} value: ${requested_version}\nValid values:\n${version_list}" >&2 + exit 1 + fi + echo "${variable_name}=${!variable_name}" +} + +# Import the specified key in a variable name passed in as +receive_gpg_keys() { + get_common_setting $1 + local keys=${!1} + get_common_setting GPG_KEY_SERVERS true + + # Use a temporary locaiton for gpg keys to avoid polluting image + export GNUPGHOME="/tmp/tmp-gnupg" + mkdir -p ${GNUPGHOME} + chmod 700 ${GNUPGHOME} + echo -e "disable-ipv6\n${GPG_KEY_SERVERS}" > ${GNUPGHOME}/dirmngr.conf + # GPG key download sometimes fails for some reason and retrying fixes it. + local retry_count=0 + local gpg_ok="false" + set +e + until [ "${gpg_ok}" = "true" ] || [ "${retry_count}" -eq "5" ]; + do + echo "(*) Downloading GPG key..." + ( echo "${keys}" | xargs -n 1 gpg --recv-keys) 2>&1 && gpg_ok="true" + if [ "${gpg_ok}" != "true" ]; then + echo "(*) Failed getting key, retring in 10s..." + (( retry_count++ )) + sleep 10s + fi + done + set -e + if [ "${gpg_ok}" = "false" ]; then + echo "(!) Failed to get gpg key." + exit 1 + fi +} + +# Function to run apt-get if needed +apt_get_update_if_needed() +{ + if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then + echo "Running apt-get update..." + apt-get update + else + echo "Skipping apt-get update." + fi +} + +# Checks if packages are installed and installs them if not +check_packages() { + if ! dpkg -s "$@" > /dev/null 2>&1; then + apt_get_update_if_needed + apt-get -y install --no-install-recommends "$@" + fi +} + +install_using_apt() { + # Soft version matching + if [ "${GIT_LFS_VERSION}" != "latest" ] && [ "${GIT_LFS_VERSION}" != "lts" ] && [ "${GIT_LFS_VERSION}" != "stable" ]; then + find_version_from_git_tags GIT_LFS_VERSION "https://github.com/git-lfs/git-lfs" + version_suffix="=${GIT_LFS_VERSION}" + else + version_suffix="" + fi + # Install + get_common_setting GIT_LFS_ARCHIVE_GPG_KEY_URI + curl -sSL "${GIT_LFS_ARCHIVE_GPG_KEY_URI}" | gpg --dearmor > /usr/share/keyrings/gitlfs-archive-keyring.gpg + echo -e "deb [arch=${architecture} signed-by=/usr/share/keyrings/gitlfs-archive-keyring.gpg] https://packagecloud.io/github/git-lfs/${ID} ${VERSION_CODENAME} main\ndeb-src [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/gitlfs-archive-keyring.gpg] https://packagecloud.io/github/git-lfs/${ID} ${VERSION_CODENAME} main" > /etc/apt/sources.list.d/git-lfs.list + + if ! (apt-get update && apt-get install -yq git-lfs${version_suffix}); then + rm -f /etc/apt/sources.list.d/git-lfs.list + return 1 + fi + + git-lfs install --skip-repo +} + +install_using_github() { + echo "(*) No apt package for ${VERSION_CODENAME} ${architecture}. Installing manually." + mkdir -p /tmp/git-lfs + cd /tmp/git-lfs + find_version_from_git_tags GIT_LFS_VERSION "https://github.com/git-lfs/git-lfs" + git_lfs_filename="git-lfs-linux-${architecture}-v${GIT_LFS_VERSION}.tar.gz" + curl -sSL -o "${git_lfs_filename}" "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/${git_lfs_filename}" + # Verify file + curl -sSL -o "sha256sums.asc" "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/sha256sums.asc" + receive_gpg_keys GIT_LFS_CHECKSUM_GPG_KEYS + gpg -q --decrypt "sha256sums.asc" > sha256sums + sha256sum --ignore-missing -c "sha256sums" + # Extract and install + tar xf "${git_lfs_filename}" -C . + ./install.sh + rm -rf /tmp/git-lfs /tmp/tmp-gnupg +} + +export DEBIAN_FRONTEND=noninteractive + +# Install git, curl, gpg, dirmngr and debian-archive-keyring if missing +. /etc/os-release +check_packages curl ca-certificates gnupg2 dirmngr apt-transport-https +if ! type git > /dev/null 2>&1; then + apt_get_update_if_needed + apt-get -y install --no-install-recommends git +fi +if [ "${ID}" = "debian" ]; then + check_packages debian-archive-keyring +fi + +# Install Git LFS +echo "Installing Git LFS..." +architecture="$(dpkg --print-architecture)" +if [[ "${GIT_LFS_ARCHIVE_ARCHITECTURES}" = *"${architecture}"* ]] && [[ "${GIT_LFS_ARCHIVE_VERSION_CODENAMES}" = *"${VERSION_CODENAME}"* ]]; then + install_using_apt || use_github="true" +else + use_github="true" +fi + +# If no archive exists or apt install fails, try direct from github +if [ "${use_github}" = "true" ]; then + install_using_github +fi + +echo "Done!" \ No newline at end of file From b3af3b0a0f8d3604d5d2b2b14efe2ce43b3d098a Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Tue, 10 May 2022 06:02:19 -0400 Subject: [PATCH 173/180] EPRS: updates for XDB-1392 --- .../7/07_common_operations/11_using_ssl_connections.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx index d33b605cd47..63e3f94d32b 100644 --- a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx @@ -181,9 +181,13 @@ Before you begin, configure the client for SSL with trigger mode. The default location of these files is `{user.home}/.postgresql(e.g/var/lib/edb/.postgresql/)`. The file location can be overridden using SSL connection parameters or Postgres SSL environmental variables, see [Setting non-default paths using environment variables](#setting-non-default-paths-using-environment-variables) for more information. + !!!note + If you have installed Replication Server using the RPM install package from the EDB repository, the value of the {user.home} property is `/var/lib/edb/` and you need to create the `.postgresql` directory in this path to have a valid default client SSL directory path (`/var/lib/edb/.postgresql/`). + !!! + Copy and rename the files: ``` - $ cd /var/lib/pgsql/.postgresql/ + $ cd /var/lib/edb/.postgresql/ $ cp /var/lib/pgsql/14/data/server.crt postgresql.crt From 3404ced6c60fd02717292a037c7c85d610eff146 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Wed, 8 Jun 2022 06:14:01 -0400 Subject: [PATCH 174/180] updating path --- .../eprs/7/07_common_operations/11_using_ssl_connections.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx index 63e3f94d32b..2c95aa3ca26 100644 --- a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx @@ -193,6 +193,10 @@ Before you begin, configure the client for SSL with trigger mode. $ cp /var/lib/pgsql/14/data/root.crt . + $ cp /var/lib/pgsql/14/data/server.crt postgresql.crt + + $ cp /var/lib/edb/14/data/root.crt . + $ cp /var/lib/pgsql/14/data/server.key postgresql.key $ openssl pkcs8 -topk8 -inform PEM -in postgresql.key -outform DER -out postgresql.pk8 -v1 PBE-MD5-DES -nocrypt From 728ca6bc947e9a0d0218228f14650260c12b0bc3 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 9 Jun 2022 06:04:31 -0400 Subject: [PATCH 175/180] fixed what was probably a merge error --- .../eprs/7/07_common_operations/11_using_ssl_connections.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx index 2c95aa3ca26..78f40fd51aa 100644 --- a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx @@ -191,10 +191,6 @@ Before you begin, configure the client for SSL with trigger mode. $ cp /var/lib/pgsql/14/data/server.crt postgresql.crt - $ cp /var/lib/pgsql/14/data/root.crt . - - $ cp /var/lib/pgsql/14/data/server.crt postgresql.crt - $ cp /var/lib/edb/14/data/root.crt . $ cp /var/lib/pgsql/14/data/server.key postgresql.key From 0a08a5b455bc3c064db91e44b7376a038db67f6e Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 9 Jun 2022 06:14:45 -0400 Subject: [PATCH 176/180] fixing path for root.crt --- .../eprs/7/07_common_operations/11_using_ssl_connections.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx index 78f40fd51aa..1c660a79852 100644 --- a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx @@ -191,7 +191,7 @@ Before you begin, configure the client for SSL with trigger mode. $ cp /var/lib/pgsql/14/data/server.crt postgresql.crt - $ cp /var/lib/edb/14/data/root.crt . + $ cp /var/lib/psql/14/data/root.crt . $ cp /var/lib/pgsql/14/data/server.key postgresql.key From 0992fd106a350d0c2ad960d35537928469073dc7 Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Thu, 2 Jun 2022 15:31:42 -0400 Subject: [PATCH 177/180] eprs user guide: description fixes --- .../7/07_common_operations/09_offline_snapshot.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx b/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx index b70c3e708c7..6ee8887cc15 100644 --- a/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx @@ -60,7 +60,7 @@ When set to `true`, the `offlineSnapshot` option prevents the usual creation of When adding the primary node in a multi-master replication system, leave the **Replicate Publication Schema** and **Perform Initial Snapshot** boxes cleared (see [Creating more primary nodes](../06_mmr_operation/03_creating_primary_nodes/#creating_primary_nodes)). -When `offlineSnapshot` is set to `true`, this configuration has the direct effect in the control schema by setting column `has_initial_snapshot` to a value of `O`. This setting indicates an offline snapshot is used for the target subscription or primary node represented by the row. Column `has_initial_snapshot` is set in table xdb_publication_subscriptions for a single-master replication system and in table xdb_MMR_pub_group for a multi-master replication system. +When `offlineSnapshot` is set to `true`, this configuration has the direct effect in the control schema by setting column `has_initial_snapshot` to a value of `O`. This setting indicates an offline snapshot is used for the target subscription or primary node represented by the row. Column `has_initial_snapshot` is set in table _edb_replicator_pub.xdb_publication_subscriptions for a single-master replication system and in table _edb_replicator_pub.xdb_mmr_pub_group for a multi-master replication system. After the first replication completes to the target subscription or primary node, `has_initial_snapshot` is changed to `Y` by Replication Server. @@ -95,10 +95,10 @@ To create a subscription from an offline snapshot: 1. Modify the publication server configuration file if these options aren't already set as described by the following: - - Change the `offlineSnapshot` option to `true`. When you restart the publication server, `offlineSnapshot` set to `true` has two effects. One is that creating a subscription doesn't create the schema and subscription table definitions in the subscription database as is done with the default setting. The other is that creating a subscription sets a column in the control schema indicating an offline snapshot is used to load this subscription. + - Change the `offlineSnapshot` option to `true`. When you reload the publication server's, `offlineSnapshot` set to `true` has two effects. One is that creating a subscription doesn't create the schema and subscription table definitions in the subscription database as is done with the default setting. The other is that creating a subscription sets a column in the control schema indicating an offline snapshot is used to load this subscription. - Set the `batchInitialSync` option to the appropriate setting for your situation as discussed at the end of [Non-batch mode synchronization](#non_batch_mode_sync). -1. Restart the publication server if you modified the publication server configuration file in Step 3. See [Registering a publication server](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) to learn how to restart a publication server. +1. Reload configuration of the publication server, if you modified the publication server configuration file in Step 3. See ["Reloading the Publication or Subscription Server Configuration File (reloadconf)"](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) for directions to reload the publication server's configuration. 1. In the subscription database, create the schema and the subscription table definitions, and load the subscription tables from your offline data source. The subscription database user name used in [Adding a subscription database](../05_smr_operation/03_creating_subscription/02_adding_subscription_database/#adding_subscription_database) must have full privileges over the database objects created in this step. Also review the beginning of [Adding a subscription database](../05_smr_operation/03_creating_subscription/02_adding_subscription_database/#adding_subscription_database) regarding the rules as to how Replication Server creates the subscription definitions from the publication for each database type. You must follow these same conventions when you create the target definitions manually. @@ -108,7 +108,7 @@ To create a subscription from an offline snapshot: 1. If you aren't planning to load any other subscriptions using an offline snapshot at this time, change the `offlineSnapshot` option back to `false` and the `batchInitialSync` option to `true` in the publication server configuration file. -1. If you modified the publication server configuration file, restart the publication server. +1. If you modified the publication server configuration file, reload configuration of the publication server. ## Multi-master replication offline snapshot @@ -131,7 +131,7 @@ To create a primary node from an offline snapshot: - Set the `offlineSnapshot` option to `true`. When the publication server is restarted, this setting has the effect that adding a primary node sets a column in the control schema indicating an offline snapshot is used to load this primary node. - Set the `batchInitialSync` option to the appropriate setting for your situation as discussed at the end of [Non-batch mode synchronization](#non_batch_mode_sync). -1. If you modified the publication server configuration file, restart the publication server. See [Registering a publication server](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) to learn how to restart a publication server. +1. If you modified the publication server configuration file, reload configuration of the publication server. See ["Reloading the Publication or Subscription Server Configuration File (reloadconf)" ](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) for directions to reload the publication server's configuration. 1. In the database to use as the new primary node, create the schema and the table definitions, and load the tables from your offline data source. @@ -141,6 +141,6 @@ To create a primary node from an offline snapshot: 1. If you aren't planning to load any other primary nodes using an offline snapshot at this time, change the `offlineSnapshot` option back to `false` and the `batchInitialSync` option to `true` in the publication server configuration file. -1. If you modified the publication server configuration file, restart the publication server. +1. If you modified the publication server configuration file, reload configuration of the publication server. 1. Add the schedule again if you removed it. See [Creating a schedule](02_creating_schedule/#creating_schedule) to learn how to create a schedule. From c162c9e3a1e824e130a5930a486f670fc0b4dcd9 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Sat, 4 Jun 2022 07:00:22 -0400 Subject: [PATCH 178/180] fixed list ordering --- .../docs/eprs/7/07_common_operations/09_offline_snapshot.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx b/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx index 6ee8887cc15..5b3d56dd6d6 100644 --- a/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx @@ -90,7 +90,7 @@ To create a subscription from an offline snapshot: 1. Register the subscription server and add the subscription database definition as described in [Registering a subscription server](../05_smr_operation/03_creating_subscription/01_registering_subscription_server/#registering_subscription_server) and [Adding a subscription database](../05_smr_operation/03_creating_subscription/02_adding_subscription_database/#adding_subscription_database). -!!! Note + !!! Note You must perform steps 3 and 4 before creating the subscription. You can repeat steps 3 through 9 each time you want to create another subscription from an offline snapshot. 1. Modify the publication server configuration file if these options aren't already set as described by the following: @@ -121,7 +121,7 @@ To create a primary node from an offline snapshot: 1. Register the publication server, add the primary definition node, and create the publication as described in [Creating a publication](../06_mmr_operation/02_creating_publication_mmr/#creating_publication_mmr). -!!! Note + !!! Note You must perform the following steps before adding a primary node to be loaded by an offline snapshot. You can repeat Steps 2 through 10 each time you want to create another primary node from an offline snapshot. 1. Be sure there's no schedule defined on the replication system. If there is, remove the schedule until you complete this process. See [Removing a schedule](03_managing_schedule/#remove_schedule) for details. From d646a0b26a2852e47656b0b3474db719527dd65d Mon Sep 17 00:00:00 2001 From: Chris Estes <106166814+ccestes@users.noreply.github.com> Date: Mon, 6 Jun 2022 11:33:16 -0400 Subject: [PATCH 179/180] changes from comments --- .../07_common_operations/09_offline_snapshot.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx b/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx index 5b3d56dd6d6..d3109ea2d6b 100644 --- a/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/09_offline_snapshot.mdx @@ -91,14 +91,14 @@ To create a subscription from an offline snapshot: 1. Register the subscription server and add the subscription database definition as described in [Registering a subscription server](../05_smr_operation/03_creating_subscription/01_registering_subscription_server/#registering_subscription_server) and [Adding a subscription database](../05_smr_operation/03_creating_subscription/02_adding_subscription_database/#adding_subscription_database). !!! Note - You must perform steps 3 and 4 before creating the subscription. You can repeat steps 3 through 9 each time you want to create another subscription from an offline snapshot. + You must perform steps 3 and 4 before creating the subscription. You can repeat steps 5 through 9 each time you want to create another subscription from an offline snapshot. 1. Modify the publication server configuration file if these options aren't already set as described by the following: - - Change the `offlineSnapshot` option to `true`. When you reload the publication server's, `offlineSnapshot` set to `true` has two effects. One is that creating a subscription doesn't create the schema and subscription table definitions in the subscription database as is done with the default setting. The other is that creating a subscription sets a column in the control schema indicating an offline snapshot is used to load this subscription. + - Change the `offlineSnapshot` option to `true`. When you restart the publication server or reload the publication server's configuration via reloadconf, `offlineSnapshot` set to `true` has two effects. One is that creating a subscription doesn't create the schema and subscription table definitions in the subscription database as is done with the default setting. The other is that creating a subscription sets a column in the control schema indicating an offline snapshot is used to load this subscription. - Set the `batchInitialSync` option to the appropriate setting for your situation as discussed at the end of [Non-batch mode synchronization](#non_batch_mode_sync). -1. Reload configuration of the publication server, if you modified the publication server configuration file in Step 3. See ["Reloading the Publication or Subscription Server Configuration File (reloadconf)"](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) for directions to reload the publication server's configuration. +1. If you modified the publication server configuration file in Step 3, reload configuration of the publication server. See ["Reloading the Publication or Subscription Server Configuration File (reloadconf)"](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) for directions on reloading the publication server's configuration. 1. In the subscription database, create the schema and the subscription table definitions, and load the subscription tables from your offline data source. The subscription database user name used in [Adding a subscription database](../05_smr_operation/03_creating_subscription/02_adding_subscription_database/#adding_subscription_database) must have full privileges over the database objects created in this step. Also review the beginning of [Adding a subscription database](../05_smr_operation/03_creating_subscription/02_adding_subscription_database/#adding_subscription_database) regarding the rules as to how Replication Server creates the subscription definitions from the publication for each database type. You must follow these same conventions when you create the target definitions manually. @@ -108,7 +108,7 @@ To create a subscription from an offline snapshot: 1. If you aren't planning to load any other subscriptions using an offline snapshot at this time, change the `offlineSnapshot` option back to `false` and the `batchInitialSync` option to `true` in the publication server configuration file. -1. If you modified the publication server configuration file, reload configuration of the publication server. +1. If you modified the publication server configuration file in step 8, reload configuration of the publication server. ## Multi-master replication offline snapshot @@ -122,16 +122,16 @@ To create a primary node from an offline snapshot: 1. Register the publication server, add the primary definition node, and create the publication as described in [Creating a publication](../06_mmr_operation/02_creating_publication_mmr/#creating_publication_mmr). !!! Note - You must perform the following steps before adding a primary node to be loaded by an offline snapshot. You can repeat Steps 2 through 10 each time you want to create another primary node from an offline snapshot. + You must perform the steps 3 and 4 before adding a primary node to be loaded by an offline snapshot. You can repeat Steps 5 through 10 each time you want to create another primary node from an offline snapshot. 1. Be sure there's no schedule defined on the replication system. If there is, remove the schedule until you complete this process. See [Removing a schedule](03_managing_schedule/#remove_schedule) for details. 1. Modify the publication server configuration file so the options are set as follows: - - Set the `offlineSnapshot` option to `true`. When the publication server is restarted, this setting has the effect that adding a primary node sets a column in the control schema indicating an offline snapshot is used to load this primary node. + - Set the `offlineSnapshot` option to `true`. When you restart the publication server or reload the publication server's configuration via reloadconf, this setting has the effect that adding a primary node sets a column in the control schema indicating an offline snapshot is used to load this primary node. - Set the `batchInitialSync` option to the appropriate setting for your situation as discussed at the end of [Non-batch mode synchronization](#non_batch_mode_sync). -1. If you modified the publication server configuration file, reload configuration of the publication server. See ["Reloading the Publication or Subscription Server Configuration File (reloadconf)" ](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) for directions to reload the publication server's configuration. +1. If you modified the publication server configuration file in step 3, reload configuration of the publication server. See ["Reloading the Publication or Subscription Server Configuration File (reloadconf)" ](../05_smr_operation/02_creating_publication/01_registering_publication_server/#registering_publication_server) for directions to reload the publication server's configuration. 1. In the database to use as the new primary node, create the schema and the table definitions, and load the tables from your offline data source. @@ -141,6 +141,6 @@ To create a primary node from an offline snapshot: 1. If you aren't planning to load any other primary nodes using an offline snapshot at this time, change the `offlineSnapshot` option back to `false` and the `batchInitialSync` option to `true` in the publication server configuration file. -1. If you modified the publication server configuration file, reload configuration of the publication server. +1. If you modified the publication server configuration file in step 8, reload configuration of the publication server. 1. Add the schedule again if you removed it. See [Creating a schedule](02_creating_schedule/#creating_schedule) to learn how to create a schedule. From c6a1313fae8f04b40000efa28d8d5acebcea0a9c Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 9 Jun 2022 07:05:17 -0400 Subject: [PATCH 180/180] fixed typo from XDB-1392 --- .../eprs/7/07_common_operations/11_using_ssl_connections.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx index 1c660a79852..63e3f94d32b 100644 --- a/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx +++ b/product_docs/docs/eprs/7/07_common_operations/11_using_ssl_connections.mdx @@ -191,7 +191,7 @@ Before you begin, configure the client for SSL with trigger mode. $ cp /var/lib/pgsql/14/data/server.crt postgresql.crt - $ cp /var/lib/psql/14/data/root.crt . + $ cp /var/lib/pgsql/14/data/root.crt . $ cp /var/lib/pgsql/14/data/server.key postgresql.key