From 3dfd475b7a4b5f4e589ca4c6a5a18968045cdb33 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Sep 2023 10:32:17 -0400 Subject: [PATCH 1/8] First edits to implement Betsy's copy edits --- install_template/templates/platformBase/base.njk | 2 +- install_template/templates/platformBase/redhat-family.njk | 4 ++-- install_template/templates/platformBase/rhel-7-or-ol-7.njk | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/install_template/templates/platformBase/base.njk b/install_template/templates/platformBase/base.njk index a07a2b4902e..15bfe645bd4 100644 --- a/install_template/templates/platformBase/base.njk +++ b/install_template/templates/platformBase/base.njk @@ -14,7 +14,7 @@ title: Installing {{ product.name }} on {{ platform.name }} {{ platform.arch }} Before you begin the installation process: {% block product_prerequisites %} -- Set up the EDB repository +- Set up the EDB repository. {% block postgresql_preamble %}{% endblock postgresql_preamble %} Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/install_template/templates/platformBase/redhat-family.njk b/install_template/templates/platformBase/redhat-family.njk index 26cb2238d68..f0df9b28c7a 100644 --- a/install_template/templates/platformBase/redhat-family.njk +++ b/install_template/templates/platformBase/redhat-family.njk @@ -1,11 +1,11 @@ {% extends "platformBase/base.njk" %} {% block prerequisites %} -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo {{ packageManager }} {{ packageManagerNoninteractive }} install {{ epelRepo }} ``` {% if platform.arch == "ppc64le" -%} -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` 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 8546541c049..dd0f955c85f 100644 --- a/install_template/templates/platformBase/rhel-7-or-ol-7.njk +++ b/install_template/templates/platformBase/rhel-7-or-ol-7.njk @@ -4,7 +4,7 @@ {% set epelRepo = "https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm" %} {% block prerequisites %} {{ super() }} -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` From 3acf2fd768b8fb35debaa43103be20ce700c9965 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:06:22 -0400 Subject: [PATCH 2/8] Changes needed for Betsy's edits to rhel_7 --- .../_centos-rhel-installcommand.njk | 2 +- .../edb-postgres-advanced-server/base.njk | 22 +++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk index 47376f89cba..0c3c4a540e5 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/_centos-rhel-installcommand.njk @@ -1 +1 @@ -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as{{ product.version }}`. \ No newline at end of file +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as{{ product.version }}`. \ No newline at end of file diff --git a/install_template/templates/products/edb-postgres-advanced-server/base.njk b/install_template/templates/products/edb-postgres-advanced-server/base.njk index c04b8572d23..8ad6b911bc4 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/base.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/base.njk @@ -16,7 +16,7 @@ redirects: {% block installCommand %} {{super()}}{% block slesoption %} -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version {{ product.version }}, the package name would be `edb-as{{ product.version }}-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version {{ product.version }}, the package name is `edb-as{{ product.version }}-server`. To install an individual component: @@ -29,11 +29,11 @@ Where `package_name` can be any of the available packages from the [available pa {% block postinstall %} ## Initial configuration {% block debian_ubuntu %} -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. {# this is kinda awful, but gotta deal with the reorg somehow... --jh #} {% set init_cluster_url = "../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode" if product.version >= 15 else "../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode" %} -First you need to initialize and start the database cluster. The `edb-as-{{ product.version | replace(".", "") }}-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode]({{ init_cluster_url }}). +First, you need to initialize and start the database cluster. The `edb-as-{{ product.version | replace(".", "") }}-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode]({{ init_cluster_url }}). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as{{ product.version }}/bin/edb-as-{{ product.version | replace(".", "") }}-setup initdb @@ -41,7 +41,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as{{ product.version }}/bin/edb- sudo systemctl start edb-as-{{ product.version }} ```{% endblock debian_ubuntu %} -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -53,7 +53,7 @@ The server runs with the `peer` or `ident` permission by default. You can change {# this is kinda awful, but gotta deal with the reorg somehow... --jh #} {% set config_doc_path = "database_administration/01_configuration_parameters/01_setting_new_parameters/" if product.version >= 15 else "epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/" %} -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../{{config_doc_path}}#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../{{config_doc_path}}#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -61,9 +61,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -72,7 +72,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -81,7 +81,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -91,7 +91,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -105,7 +105,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; From d69547a635eef596fb7e34fbc6c9d2be25ec0fbc Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:17:34 -0400 Subject: [PATCH 3/8] remaining edits from Betsy --- install_template/templates/platformBase/ppc64le_index.njk | 2 +- install_template/templates/platformBase/sles-12.njk | 4 ++-- install_template/templates/platformBase/x86_64_index.njk | 2 +- .../products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/install_template/templates/platformBase/ppc64le_index.njk b/install_template/templates/platformBase/ppc64le_index.njk index 468a0145dce..d114bf79bd0 100644 --- a/install_template/templates/platformBase/ppc64le_index.njk +++ b/install_template/templates/platformBase/ppc64le_index.njk @@ -17,7 +17,7 @@ navigation: {% endblock navigation %} --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: {% block install %} {% if osVersions.hasFamily("RHEL") %} diff --git a/install_template/templates/platformBase/sles-12.njk b/install_template/templates/platformBase/sles-12.njk index f1cc221cfb3..eaf073a97f6 100644 --- a/install_template/templates/platformBase/sles-12.njk +++ b/install_template/templates/platformBase/sles-12.njk @@ -7,7 +7,7 @@ {% endblock repocheck %} {% block prerequisites %} {% block other_platform_prerequesites_shell %}{% endblock other_platform_prerequesites_shell %} -- Activate the required SUSE module +- Activate the required SUSE module: ```shell {%- filter indent(2) -%} {% block activateSUSEmodule %} @@ -16,7 +16,7 @@ sudo SUSEConnect -p sle-sdk/12.5/{{ platform.arch }} {% endblock activateSUSEmodule %} {%- endfilter %} ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/install_template/templates/platformBase/x86_64_index.njk b/install_template/templates/platformBase/x86_64_index.njk index 81a62b5d5a0..a1afaa42d22 100644 --- a/install_template/templates/platformBase/x86_64_index.njk +++ b/install_template/templates/platformBase/x86_64_index.njk @@ -26,7 +26,7 @@ navigation: {% endblock navigation %} --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: {% if osVersions.hasFamily("RHEL") %} ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk index ce23ce51d69..45e3e78251c 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/rhel-8-or-ol-8.njk @@ -2,12 +2,12 @@ {% set platformBaseTemplate = "rhel-8-or-ol-8" %} {% block prerequisites %} {{ super() }} -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. {% endblock prerequisites %} {% block installCommand %} {{ super() }} From 1f2051dc47c8f31c68ef4c7a229db92f75b5a6a4 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:59:55 -0400 Subject: [PATCH 4/8] minor edits for consistency across products in install topics --- install_template/templates/products/failover-manager/base.njk | 2 +- .../products/postgres-enterprise-manager-server/base.njk | 2 +- 2 files 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 003ba4f8859..7004f34dd2d 100644 --- a/install_template/templates/products/failover-manager/base.njk +++ b/install_template/templates/products/failover-manager/base.njk @@ -13,7 +13,7 @@ redirects: {% endblock frontmatter %} {% block product_prerequisites %} -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) diff --git a/install_template/templates/products/postgres-enterprise-manager-server/base.njk b/install_template/templates/products/postgres-enterprise-manager-server/base.njk index dc748eda2e5..6bce2400b34 100644 --- a/install_template/templates/products/postgres-enterprise-manager-server/base.njk +++ b/install_template/templates/products/postgres-enterprise-manager-server/base.njk @@ -18,7 +18,7 @@ redirects: {% endblock frontmatter %} {% block product_prerequisites %} -- Set 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 this step. {%- filter indent(2) -%} From f88cc3556de565ff000445b70baa5387e190a6ec Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 11 Sep 2023 10:23:15 -0400 Subject: [PATCH 5/8] Assorted changes to install templates to match Betsy's edits --- .../templates/platformBase/almalinux-8-or-rocky-linux-8.njk | 2 +- .../templates/platformBase/almalinux-9-or-rocky-linux-9.njk | 2 +- .../templates/products/migration-toolkit/rhel-7-or-ol-7.njk | 2 +- .../products/mysql-foreign-data-wrapper/centos-7.njk | 4 ++-- .../products/mysql-foreign-data-wrapper/debian-10.njk | 4 ++-- .../products/mysql-foreign-data-wrapper/debian-11.njk | 2 +- .../products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk | 4 ++-- .../templates/products/mysql-foreign-data-wrapper/sles-12.njk | 4 ++-- .../templates/products/mysql-foreign-data-wrapper/sles-15.njk | 4 ++-- .../products/mysql-foreign-data-wrapper/ubuntu-18.04.njk | 2 +- .../products/postgresql/almalinux-8-or-rocky-linux-8.njk | 4 ++-- .../products/postgresql/almalinux-9-or-rocky-linux-9.njk | 4 ++-- .../templates/products/postgresql/rhel-8-or-ol-8.njk | 4 ++-- .../templates/products/postgresql/rhel-9-or-ol-9.njk | 4 ++-- 14 files changed, 23 insertions(+), 23 deletions(-) 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 0d19ec4d712..27240325451 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 @@ -4,7 +4,7 @@ {% set epelRepo = "epel-release" %} {% block prerequisites %} {{ super() }} -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/install_template/templates/platformBase/almalinux-9-or-rocky-linux-9.njk b/install_template/templates/platformBase/almalinux-9-or-rocky-linux-9.njk index 0d19ec4d712..27240325451 100644 --- a/install_template/templates/platformBase/almalinux-9-or-rocky-linux-9.njk +++ b/install_template/templates/platformBase/almalinux-9-or-rocky-linux-9.njk @@ -4,7 +4,7 @@ {% set epelRepo = "epel-release" %} {% block prerequisites %} {{ super() }} -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` 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 c57ac1397a8..8797e6d5da5 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,7 +1,7 @@ {% extends "products/migration-toolkit/base.njk" %} {% set platformBaseTemplate = "rhel-7-or-ol-7" %} {% block prerequisites %} -- Address other prerequisites +- Address other prerequisites: ```shell # Install the EPEL repository: sudo {{ packageManager }} -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 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 index 02a0ae1d5ba..a910a4bd21a 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/centos-7.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/centos-7.njk @@ -2,11 +2,11 @@ {% set platformBaseTemplate = "centos-7" %} {% block prerequisites %} {{ super() }} -- Download and install the MySQL repo +- Download and install the MySQL repo: ```shell sudo yum -y install https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm ``` -- Enable the MySQL repo +- Enable the MySQL repo: ```shell # For MySQL 8: sudo yum -y install --enablerepo=mysql80-community --disablerepo=mysql57-community edb-as-mysql8_fdw 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 index 953a63f94af..17aef377faf 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/debian-10.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/debian-10.njk @@ -2,11 +2,11 @@ {% set platformBaseTemplate = "debian-10" %} {% block prerequisites %} {{ super() }} -- Download the GPG key to your APT keyring directly using the apt-key utility +- Download the GPG key to your APT keyring directly using the apt-key utility: ```shell sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3A79BD29 ``` -- Install and configure the MySQL repo +- Install and configure the MySQL repo: ```shell # For MySQL 8: sudo echo "deb http://repo.mysql.com/apt/debian/buster mysql-8.0" | sudo tee /etc/apt/sources.list.d/mysql.list diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/debian-11.njk b/install_template/templates/products/mysql-foreign-data-wrapper/debian-11.njk index ca8a17a58a2..64b0aedfd29 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/debian-11.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/debian-11.njk @@ -2,7 +2,7 @@ {% set platformBaseTemplate = "debian-11" %} {% block prerequisites %} {{ super() }} -- Address other prerequisites +- Address other prerequisites: ```shell # Download the GPG key to your APT keyring directly using the apt-key utility: sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3A79BD29 diff --git a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk index ed2f18695d5..99cd1b5c547 100644 --- a/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk +++ b/install_template/templates/products/mysql-foreign-data-wrapper/rhel-7-or-ol-7.njk @@ -2,11 +2,11 @@ {% set platformBaseTemplate = "rhel-7-or-ol-7" %} {% block prerequisites %} {{ super() }} -- Download and install the MYSQL repo +- Download and install the MYSQL repo: ```shell sudo yum -y install https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm ``` -- Enable the MYSQL repo +- Enable the MYSQL repo: ```shell # For MySQL 8: sudo yum -y install --enablerepo=mysql80-community --disablerepo=mysql57-community edb-as-mysql8_fdw 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 b2b37c9fe1a..717f4a1069a 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,12 +1,12 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "sles-12" %} {% block other_platform_prerequesites_shell %} -- Install the MySQL community repository +- Install the MySQL community repository: ```shell sudo 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 +- Enable the MySQL8 repository and disable the MySQL 5 repository: ```shell sudo zypper modifyrepo -e mysql80-community sudo zypper modifyrepo -d mysql57-community 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 5f55a49d9b4..9f4eb01d190 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,12 +1,12 @@ {% extends "products/mysql-foreign-data-wrapper/base.njk" %} {% set platformBaseTemplate = "sles-15" %} {% block other_platform_prerequesites_shell %} -- Install the MySQL community repository +- Install the MySQL community repository: ```shell sudo 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 +- Enable the MySQL8 repository and disable the MySQL 5 repository: ```shell sudo zypper modifyrepo -e mysql80-community sudo zypper modifyrepo -d mysql57-community 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 index f8524f04a99..685ce6450ef 100644 --- 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 @@ -2,7 +2,7 @@ {% set platformBaseTemplate = "ubuntu-18.04" %} {% block prerequisites %} {{ super() }} -- Address other prerequisites +- Address other prerequisites: ```shell # Download the GPG key to your APT keyring directly using the apt-key utility: sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3A79BD29 diff --git a/install_template/templates/products/postgresql/almalinux-8-or-rocky-linux-8.njk b/install_template/templates/products/postgresql/almalinux-8-or-rocky-linux-8.njk index ffa6c0ec182..7b887f59c62 100644 --- a/install_template/templates/products/postgresql/almalinux-8-or-rocky-linux-8.njk +++ b/install_template/templates/products/postgresql/almalinux-8-or-rocky-linux-8.njk @@ -3,11 +3,11 @@ {% set packageManager = "dnf" %} {% block prerequisites %} {{ super() }} -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell dnf config-manager --set-enabled powertools ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/install_template/templates/products/postgresql/almalinux-9-or-rocky-linux-9.njk b/install_template/templates/products/postgresql/almalinux-9-or-rocky-linux-9.njk index 66fbc3f403b..8ddeed61ba9 100644 --- a/install_template/templates/products/postgresql/almalinux-9-or-rocky-linux-9.njk +++ b/install_template/templates/products/postgresql/almalinux-9-or-rocky-linux-9.njk @@ -3,11 +3,11 @@ {% set packageManager = "dnf" %} {% block prerequisites %} {{ super() }} -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell dnf config-manager --set-enabled powertools ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/install_template/templates/products/postgresql/rhel-8-or-ol-8.njk b/install_template/templates/products/postgresql/rhel-8-or-ol-8.njk index e0d423c0f84..ba6e166740e 100644 --- a/install_template/templates/products/postgresql/rhel-8-or-ol-8.njk +++ b/install_template/templates/products/postgresql/rhel-8-or-ol-8.njk @@ -2,11 +2,11 @@ {% set platformBaseTemplate = "rhel-8-or-ol-8" %} {% block prerequisites %} {{ super() }} -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/install_template/templates/products/postgresql/rhel-9-or-ol-9.njk b/install_template/templates/products/postgresql/rhel-9-or-ol-9.njk index 6a1aaa0763e..7ecad143179 100644 --- a/install_template/templates/products/postgresql/rhel-9-or-ol-9.njk +++ b/install_template/templates/products/postgresql/rhel-9-or-ol-9.njk @@ -2,11 +2,11 @@ {% set platformBaseTemplate = "rhel-9-or-ol-9" %} {% block prerequisites %} {{ super() }} -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-9-${ARCH}-rpms" ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` From 2a42046416d2f6f7416c00b982b097af8a81420a Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Mon, 11 Sep 2023 10:24:53 -0400 Subject: [PATCH 6/8] Deployed changes to install topics based on template changes --- .../installing/linux_ppc64le/index.mdx | 2 +- .../linux_ppc64le/postgresql_rhel_8.mdx | 10 +++--- .../linux_ppc64le/postgresql_rhel_9.mdx | 10 +++--- .../linux_ppc64le/postgresql_sles_12.mdx | 6 ++-- .../linux_ppc64le/postgresql_sles_15.mdx | 6 ++-- .../installing/linux_x86_64/index.mdx | 2 +- .../linux_x86_64/postgresql_centos_7.mdx | 4 +-- .../linux_x86_64/postgresql_debian_10.mdx | 2 +- .../linux_x86_64/postgresql_debian_11.mdx | 2 +- .../linux_x86_64/postgresql_other_linux_8.mdx | 10 +++--- .../linux_x86_64/postgresql_other_linux_9.mdx | 10 +++--- .../linux_x86_64/postgresql_rhel_7.mdx | 6 ++-- .../linux_x86_64/postgresql_rhel_8.mdx | 8 ++--- .../linux_x86_64/postgresql_rhel_9.mdx | 8 ++--- .../linux_x86_64/postgresql_sles_12.mdx | 6 ++-- .../linux_x86_64/postgresql_sles_15.mdx | 6 ++-- .../linux_x86_64/postgresql_ubuntu_18.mdx | 2 +- .../linux_x86_64/postgresql_ubuntu_20.mdx | 2 +- .../linux_x86_64/postgresql_ubuntu_22.mdx | 2 +- .../linux_ppc64le/edbplus_rhel_8.mdx | 2 +- .../linux_ppc64le/edbplus_rhel_9.mdx | 2 +- .../linux_ppc64le/edbplus_sles_12.mdx | 6 ++-- .../linux_ppc64le/edbplus_sles_15.mdx | 6 ++-- .../41/installing/linux_ppc64le/index.mdx | 2 +- .../linux_x86_64/edbplus_centos_7.mdx | 4 +-- .../linux_x86_64/edbplus_debian_10.mdx | 2 +- .../linux_x86_64/edbplus_debian_11.mdx | 2 +- .../linux_x86_64/edbplus_other_linux_8.mdx | 2 +- .../linux_x86_64/edbplus_other_linux_9.mdx | 2 +- .../linux_x86_64/edbplus_rhel_7.mdx | 6 ++-- .../linux_x86_64/edbplus_rhel_8.mdx | 2 +- .../linux_x86_64/edbplus_rhel_9.mdx | 2 +- .../linux_x86_64/edbplus_sles_12.mdx | 6 ++-- .../linux_x86_64/edbplus_sles_15.mdx | 6 ++-- .../linux_x86_64/edbplus_ubuntu_18.mdx | 2 +- .../linux_x86_64/edbplus_ubuntu_20.mdx | 2 +- .../linux_x86_64/edbplus_ubuntu_22.mdx | 2 +- .../41/installing/linux_x86_64/index.mdx | 2 +- .../4/installing/linux_ppc64le/efm_rhel_8.mdx | 8 ++--- .../4/installing/linux_ppc64le/efm_rhel_9.mdx | 8 ++--- .../installing/linux_ppc64le/efm_sles_12.mdx | 8 ++--- .../installing/linux_ppc64le/efm_sles_15.mdx | 8 ++--- .../efm/4/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_x86_64/efm_centos_7.mdx | 6 ++-- .../installing/linux_x86_64/efm_debian_10.mdx | 4 +-- .../installing/linux_x86_64/efm_debian_11.mdx | 4 +-- .../linux_x86_64/efm_other_linux_8.mdx | 8 ++--- .../linux_x86_64/efm_other_linux_9.mdx | 8 ++--- .../4/installing/linux_x86_64/efm_rhel_7.mdx | 8 ++--- .../4/installing/linux_x86_64/efm_rhel_8.mdx | 6 ++-- .../4/installing/linux_x86_64/efm_rhel_9.mdx | 6 ++-- .../4/installing/linux_x86_64/efm_sles_12.mdx | 8 ++--- .../4/installing/linux_x86_64/efm_sles_15.mdx | 8 ++--- .../installing/linux_x86_64/efm_ubuntu_18.mdx | 4 +-- .../installing/linux_x86_64/efm_ubuntu_20.mdx | 4 +-- .../installing/linux_x86_64/efm_ubuntu_22.mdx | 4 +-- .../efm/4/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_ppc64le/epas_rhel_7.mdx | 32 ++++++++--------- .../installing/linux_ppc64le/epas_rhel_8.mdx | 34 +++++++++---------- .../installing/linux_ppc64le/epas_rhel_9.mdx | 30 ++++++++-------- .../installing/linux_ppc64le/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_ppc64le/epas_sles_15.mdx | 26 +++++++------- .../11/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_x86_64/epas_centos_7.mdx | 28 +++++++-------- .../linux_x86_64/epas_debian_10.mdx | 20 +++++------ .../linux_x86_64/epas_debian_11.mdx | 20 +++++------ .../linux_x86_64/epas_other_linux_8.mdx | 30 ++++++++-------- .../linux_x86_64/epas_other_linux_9.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_7.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_8.mdx | 32 ++++++++--------- .../installing/linux_x86_64/epas_rhel_9.mdx | 28 +++++++-------- .../installing/linux_x86_64/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_x86_64/epas_sles_15.mdx | 26 +++++++------- .../linux_x86_64/epas_ubuntu_18.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_20.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_22.mdx | 20 +++++------ .../epas/11/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_ppc64le/epas_rhel_7.mdx | 32 ++++++++--------- .../installing/linux_ppc64le/epas_rhel_8.mdx | 34 +++++++++---------- .../installing/linux_ppc64le/epas_rhel_9.mdx | 30 ++++++++-------- .../installing/linux_ppc64le/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_ppc64le/epas_sles_15.mdx | 26 +++++++------- .../12/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_x86_64/epas_centos_7.mdx | 28 +++++++-------- .../linux_x86_64/epas_debian_10.mdx | 20 +++++------ .../linux_x86_64/epas_debian_11.mdx | 20 +++++------ .../linux_x86_64/epas_other_linux_8.mdx | 30 ++++++++-------- .../linux_x86_64/epas_other_linux_9.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_7.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_8.mdx | 32 ++++++++--------- .../installing/linux_x86_64/epas_rhel_9.mdx | 28 +++++++-------- .../installing/linux_x86_64/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_x86_64/epas_sles_15.mdx | 26 +++++++------- .../linux_x86_64/epas_ubuntu_18.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_20.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_22.mdx | 20 +++++------ .../epas/12/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_ppc64le/epas_rhel_7.mdx | 32 ++++++++--------- .../installing/linux_ppc64le/epas_rhel_8.mdx | 34 +++++++++---------- .../installing/linux_ppc64le/epas_rhel_9.mdx | 30 ++++++++-------- .../installing/linux_ppc64le/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_ppc64le/epas_sles_15.mdx | 26 +++++++------- .../13/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_x86_64/epas_centos_7.mdx | 28 +++++++-------- .../linux_x86_64/epas_debian_10.mdx | 20 +++++------ .../linux_x86_64/epas_debian_11.mdx | 20 +++++------ .../linux_x86_64/epas_other_linux_8.mdx | 30 ++++++++-------- .../linux_x86_64/epas_other_linux_9.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_7.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_8.mdx | 32 ++++++++--------- .../installing/linux_x86_64/epas_rhel_9.mdx | 28 +++++++-------- .../installing/linux_x86_64/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_x86_64/epas_sles_15.mdx | 26 +++++++------- .../linux_x86_64/epas_ubuntu_18.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_20.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_22.mdx | 20 +++++------ .../epas/13/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_ppc64le/epas_rhel_7.mdx | 32 ++++++++--------- .../installing/linux_ppc64le/epas_rhel_8.mdx | 34 +++++++++---------- .../installing/linux_ppc64le/epas_rhel_9.mdx | 30 ++++++++-------- .../installing/linux_ppc64le/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_ppc64le/epas_sles_15.mdx | 26 +++++++------- .../14/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_x86_64/epas_centos_7.mdx | 28 +++++++-------- .../linux_x86_64/epas_debian_10.mdx | 20 +++++------ .../linux_x86_64/epas_debian_11.mdx | 20 +++++------ .../linux_x86_64/epas_other_linux_8.mdx | 30 ++++++++-------- .../linux_x86_64/epas_other_linux_9.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_7.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_8.mdx | 32 ++++++++--------- .../installing/linux_x86_64/epas_rhel_9.mdx | 28 +++++++-------- .../installing/linux_x86_64/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_x86_64/epas_sles_15.mdx | 26 +++++++------- .../linux_x86_64/epas_ubuntu_18.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_20.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_22.mdx | 20 +++++------ .../epas/14/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_ppc64le/epas_rhel_7.mdx | 32 ++++++++--------- .../installing/linux_ppc64le/epas_rhel_8.mdx | 34 +++++++++---------- .../installing/linux_ppc64le/epas_rhel_9.mdx | 30 ++++++++-------- .../installing/linux_ppc64le/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_ppc64le/epas_sles_15.mdx | 26 +++++++------- .../15/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_x86_64/epas_centos_7.mdx | 28 +++++++-------- .../linux_x86_64/epas_debian_10.mdx | 20 +++++------ .../linux_x86_64/epas_debian_11.mdx | 20 +++++------ .../linux_x86_64/epas_other_linux_8.mdx | 30 ++++++++-------- .../linux_x86_64/epas_other_linux_9.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_7.mdx | 30 ++++++++-------- .../installing/linux_x86_64/epas_rhel_8.mdx | 32 ++++++++--------- .../installing/linux_x86_64/epas_rhel_9.mdx | 28 +++++++-------- .../installing/linux_x86_64/epas_sles_12.mdx | 26 +++++++------- .../installing/linux_x86_64/epas_sles_15.mdx | 26 +++++++------- .../linux_x86_64/epas_ubuntu_18.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_20.mdx | 20 +++++------ .../linux_x86_64/epas_ubuntu_22.mdx | 20 +++++------ .../epas/15/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_ppc64le/eprs_rhel_8.mdx | 2 +- .../installing/linux_ppc64le/eprs_rhel_9.mdx | 2 +- .../installing/linux_ppc64le/eprs_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/eprs_sles_15.mdx | 6 ++-- .../eprs/7/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_x86_64/eprs_centos_7.mdx | 4 +-- .../linux_x86_64/eprs_debian_10.mdx | 2 +- .../linux_x86_64/eprs_debian_11.mdx | 2 +- .../linux_x86_64/eprs_other_linux_8.mdx | 2 +- .../linux_x86_64/eprs_other_linux_9.mdx | 2 +- .../7/installing/linux_x86_64/eprs_rhel_7.mdx | 6 ++-- .../7/installing/linux_x86_64/eprs_rhel_8.mdx | 2 +- .../7/installing/linux_x86_64/eprs_rhel_9.mdx | 2 +- .../installing/linux_x86_64/eprs_sles_12.mdx | 6 ++-- .../installing/linux_x86_64/eprs_sles_15.mdx | 6 ++-- .../linux_x86_64/eprs_ubuntu_18.mdx | 2 +- .../linux_x86_64/eprs_ubuntu_20.mdx | 2 +- .../linux_x86_64/eprs_ubuntu_22.mdx | 2 +- .../eprs/7/installing/linux_x86_64/index.mdx | 2 +- .../linux_ppc64le/hadoop_rhel_8.mdx | 6 ++-- .../linux_ppc64le/hadoop_rhel_9.mdx | 6 ++-- .../linux_ppc64le/hadoop_sles_12.mdx | 6 ++-- .../linux_ppc64le/hadoop_sles_15.mdx | 6 ++-- .../2/installing/linux_ppc64le/index.mdx | 2 +- .../linux_x86_64/hadoop_centos_7.mdx | 4 +-- .../linux_x86_64/hadoop_debian_10.mdx | 2 +- .../linux_x86_64/hadoop_debian_11.mdx | 2 +- .../linux_x86_64/hadoop_other_linux_8.mdx | 6 ++-- .../linux_x86_64/hadoop_other_linux_9.mdx | 6 ++-- .../installing/linux_x86_64/hadoop_rhel_7.mdx | 6 ++-- .../installing/linux_x86_64/hadoop_rhel_8.mdx | 4 +-- .../installing/linux_x86_64/hadoop_rhel_9.mdx | 4 +-- .../linux_x86_64/hadoop_sles_12.mdx | 6 ++-- .../linux_x86_64/hadoop_sles_15.mdx | 6 ++-- .../linux_x86_64/hadoop_ubuntu_18.mdx | 2 +- .../linux_x86_64/hadoop_ubuntu_20.mdx | 2 +- .../linux_x86_64/hadoop_ubuntu_22.mdx | 2 +- .../2/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_ppc64le/jdbc_rhel_8.mdx | 6 ++-- .../installing/linux_ppc64le/jdbc_rhel_9.mdx | 6 ++-- .../installing/linux_ppc64le/jdbc_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/jdbc_sles_15.mdx | 6 ++-- .../installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/jdbc_centos_7.mdx | 4 +-- .../linux_x86_64/jdbc_debian_10.mdx | 2 +- .../linux_x86_64/jdbc_debian_11.mdx | 2 +- .../linux_x86_64/jdbc_other_linux_8.mdx | 6 ++-- .../linux_x86_64/jdbc_other_linux_9.mdx | 6 ++-- .../installing/linux_x86_64/jdbc_rhel_7.mdx | 6 ++-- .../installing/linux_x86_64/jdbc_rhel_8.mdx | 4 +-- .../installing/linux_x86_64/jdbc_rhel_9.mdx | 4 +-- .../installing/linux_x86_64/jdbc_sles_12.mdx | 6 ++-- .../installing/linux_x86_64/jdbc_sles_15.mdx | 6 ++-- .../linux_x86_64/jdbc_ubuntu_18.mdx | 2 +- .../linux_x86_64/jdbc_ubuntu_20.mdx | 2 +- .../linux_x86_64/jdbc_ubuntu_22.mdx | 2 +- .../55/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_ppc64le/mtk_rhel_8.mdx | 2 +- .../installing/linux_ppc64le/mtk_rhel_9.mdx | 2 +- .../installing/linux_ppc64le/mtk_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/mtk_sles_15.mdx | 6 ++-- .../55/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/mtk_centos_7.mdx | 4 +-- .../installing/linux_x86_64/mtk_debian_10.mdx | 2 +- .../installing/linux_x86_64/mtk_debian_11.mdx | 2 +- .../linux_x86_64/mtk_other_linux_8.mdx | 2 +- .../linux_x86_64/mtk_other_linux_9.mdx | 2 +- .../55/installing/linux_x86_64/mtk_rhel_7.mdx | 4 +-- .../55/installing/linux_x86_64/mtk_rhel_8.mdx | 2 +- .../55/installing/linux_x86_64/mtk_rhel_9.mdx | 2 +- .../installing/linux_x86_64/mtk_sles_12.mdx | 6 ++-- .../installing/linux_x86_64/mtk_sles_15.mdx | 6 ++-- .../installing/linux_x86_64/mtk_ubuntu_18.mdx | 2 +- .../installing/linux_x86_64/mtk_ubuntu_20.mdx | 2 +- .../installing/linux_x86_64/mtk_ubuntu_22.mdx | 2 +- .../5/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_ppc64le/mongo_rhel_8.mdx | 6 ++-- .../installing/linux_ppc64le/mongo_rhel_9.mdx | 6 ++-- .../linux_ppc64le/mongo_sles_12.mdx | 6 ++-- .../linux_ppc64le/mongo_sles_15.mdx | 6 ++-- .../5/installing/linux_x86_64/index.mdx | 2 +- .../linux_x86_64/mongo_centos_7.mdx | 4 +-- .../linux_x86_64/mongo_debian_10.mdx | 2 +- .../linux_x86_64/mongo_debian_11.mdx | 2 +- .../linux_x86_64/mongo_other_linux_8.mdx | 6 ++-- .../linux_x86_64/mongo_other_linux_9.mdx | 6 ++-- .../installing/linux_x86_64/mongo_rhel_7.mdx | 6 ++-- .../installing/linux_x86_64/mongo_rhel_8.mdx | 4 +-- .../installing/linux_x86_64/mongo_rhel_9.mdx | 4 +-- .../installing/linux_x86_64/mongo_sles_12.mdx | 6 ++-- .../installing/linux_x86_64/mongo_sles_15.mdx | 6 ++-- .../linux_x86_64/mongo_ubuntu_18.mdx | 2 +- .../linux_x86_64/mongo_ubuntu_20.mdx | 2 +- .../linux_x86_64/mongo_ubuntu_22.mdx | 2 +- .../2/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_ppc64le/mysql_rhel_8.mdx | 6 ++-- .../installing/linux_ppc64le/mysql_rhel_9.mdx | 6 ++-- .../linux_ppc64le/mysql_sles_12.mdx | 10 +++--- .../linux_ppc64le/mysql_sles_15.mdx | 10 +++--- .../2/installing/linux_x86_64/index.mdx | 2 +- .../linux_x86_64/mysql_centos_7.mdx | 8 ++--- .../linux_x86_64/mysql_debian_10.mdx | 6 ++-- .../linux_x86_64/mysql_debian_11.mdx | 4 +-- .../linux_x86_64/mysql_other_linux_8.mdx | 6 ++-- .../linux_x86_64/mysql_other_linux_9.mdx | 6 ++-- .../installing/linux_x86_64/mysql_rhel_7.mdx | 10 +++--- .../installing/linux_x86_64/mysql_rhel_8.mdx | 4 +-- .../installing/linux_x86_64/mysql_rhel_9.mdx | 4 +-- .../installing/linux_x86_64/mysql_sles_12.mdx | 10 +++--- .../installing/linux_x86_64/mysql_sles_15.mdx | 10 +++--- .../linux_x86_64/mysql_ubuntu_18.mdx | 4 +-- .../linux_x86_64/mysql_ubuntu_20.mdx | 2 +- .../linux_x86_64/mysql_ubuntu_22.mdx | 2 +- .../14/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_ppc64le/ocl_rhel_8.mdx | 6 ++-- .../installing/linux_ppc64le/ocl_rhel_9.mdx | 6 ++-- .../installing/linux_ppc64le/ocl_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/ocl_sles_15.mdx | 6 ++-- .../14/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/ocl_centos_7.mdx | 4 +-- .../installing/linux_x86_64/ocl_debian_10.mdx | 2 +- .../installing/linux_x86_64/ocl_debian_11.mdx | 2 +- .../linux_x86_64/ocl_other_linux_8.mdx | 6 ++-- .../linux_x86_64/ocl_other_linux_9.mdx | 6 ++-- .../14/installing/linux_x86_64/ocl_rhel_7.mdx | 6 ++-- .../14/installing/linux_x86_64/ocl_rhel_8.mdx | 4 +-- .../14/installing/linux_x86_64/ocl_rhel_9.mdx | 4 +-- .../installing/linux_x86_64/ocl_sles_12.mdx | 6 ++-- .../installing/linux_x86_64/ocl_sles_15.mdx | 6 ++-- .../installing/linux_x86_64/ocl_ubuntu_18.mdx | 2 +- .../installing/linux_x86_64/ocl_ubuntu_20.mdx | 2 +- .../15/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_ppc64le/ocl_rhel_8.mdx | 6 ++-- .../installing/linux_ppc64le/ocl_rhel_9.mdx | 6 ++-- .../installing/linux_ppc64le/ocl_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/ocl_sles_15.mdx | 6 ++-- .../15/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/ocl_centos_7.mdx | 4 +-- .../installing/linux_x86_64/ocl_debian_10.mdx | 2 +- .../installing/linux_x86_64/ocl_debian_11.mdx | 2 +- .../linux_x86_64/ocl_other_linux_8.mdx | 6 ++-- .../linux_x86_64/ocl_other_linux_9.mdx | 6 ++-- .../15/installing/linux_x86_64/ocl_rhel_7.mdx | 6 ++-- .../15/installing/linux_x86_64/ocl_rhel_8.mdx | 4 +-- .../15/installing/linux_x86_64/ocl_rhel_9.mdx | 4 +-- .../installing/linux_x86_64/ocl_sles_12.mdx | 6 ++-- .../installing/linux_x86_64/ocl_sles_15.mdx | 6 ++-- .../installing/linux_x86_64/ocl_ubuntu_18.mdx | 2 +- .../installing/linux_x86_64/ocl_ubuntu_20.mdx | 2 +- .../installing/linux_x86_64/ocl_ubuntu_22.mdx | 2 +- .../13/installing/linux_ppc64le/index.mdx | 2 +- .../installing/linux_ppc64le/odbc_rhel_8.mdx | 6 ++-- .../installing/linux_ppc64le/odbc_rhel_9.mdx | 6 ++-- .../installing/linux_ppc64le/odbc_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/odbc_sles_15.mdx | 6 ++-- .../13/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/odbc_centos_7.mdx | 4 +-- .../linux_x86_64/odbc_debian_10.mdx | 2 +- .../linux_x86_64/odbc_debian_11.mdx | 2 +- .../linux_x86_64/odbc_other_linux_8.mdx | 6 ++-- .../linux_x86_64/odbc_other_linux_9.mdx | 6 ++-- .../installing/linux_x86_64/odbc_rhel_7.mdx | 6 ++-- .../installing/linux_x86_64/odbc_rhel_8.mdx | 4 +-- .../installing/linux_x86_64/odbc_rhel_9.mdx | 4 +-- .../installing/linux_x86_64/odbc_sles_12.mdx | 6 ++-- .../installing/linux_x86_64/odbc_sles_15.mdx | 6 ++-- .../linux_x86_64/odbc_ubuntu_18.mdx | 2 +- .../linux_x86_64/odbc_ubuntu_20.mdx | 2 +- .../linux_x86_64/odbc_ubuntu_22.mdx | 2 +- .../pem/8/installing/linux_ppc64le/index.mdx | 2 +- .../8/installing/linux_ppc64le/pem_rhel_8.mdx | 2 +- .../8/installing/linux_ppc64le/pem_rhel_9.mdx | 2 +- .../installing/linux_ppc64le/pem_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/pem_sles_15.mdx | 6 ++-- .../pem/8/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/pem_centos_7.mdx | 2 +- .../installing/linux_x86_64/pem_debian_10.mdx | 2 +- .../installing/linux_x86_64/pem_debian_11.mdx | 2 +- .../linux_x86_64/pem_other_linux_8.mdx | 2 +- .../linux_x86_64/pem_other_linux_9.mdx | 2 +- .../8/installing/linux_x86_64/pem_rhel_7.mdx | 2 +- .../8/installing/linux_x86_64/pem_rhel_8.mdx | 2 +- .../8/installing/linux_x86_64/pem_rhel_9.mdx | 2 +- .../8/installing/linux_x86_64/pem_sles_12.mdx | 6 ++-- .../8/installing/linux_x86_64/pem_sles_15.mdx | 6 ++-- .../installing/linux_x86_64/pem_ubuntu_18.mdx | 2 +- .../installing/linux_x86_64/pem_ubuntu_20.mdx | 2 +- .../installing/linux_x86_64/pem_ubuntu_22.mdx | 2 +- .../linux_ppc64le/index.mdx | 2 +- .../linux_ppc64le/pem_agent_rhel_8.mdx | 2 +- .../linux_ppc64le/pem_agent_rhel_9.mdx | 2 +- .../linux_ppc64le/pem_agent_sles_12.mdx | 6 ++-- .../linux_ppc64le/pem_agent_sles_15.mdx | 6 ++-- .../linux_x86_64/index.mdx | 2 +- .../linux_x86_64/pem_agent_centos_7.mdx | 2 +- .../linux_x86_64/pem_agent_debian_10.mdx | 2 +- .../linux_x86_64/pem_agent_debian_11.mdx | 2 +- .../linux_x86_64/pem_agent_other_linux_8.mdx | 2 +- .../linux_x86_64/pem_agent_other_linux_9.mdx | 2 +- .../linux_x86_64/pem_agent_rhel_7.mdx | 2 +- .../linux_x86_64/pem_agent_rhel_8.mdx | 2 +- .../linux_x86_64/pem_agent_rhel_9.mdx | 2 +- .../linux_x86_64/pem_agent_sles_12.mdx | 6 ++-- .../linux_x86_64/pem_agent_sles_15.mdx | 6 ++-- .../linux_x86_64/pem_agent_ubuntu_18.mdx | 2 +- .../linux_x86_64/pem_agent_ubuntu_20.mdx | 2 +- .../linux_x86_64/pem_agent_ubuntu_22.mdx | 2 +- .../pem/9/installing/linux_ppc64le/index.mdx | 2 +- .../9/installing/linux_ppc64le/pem_rhel_8.mdx | 2 +- .../9/installing/linux_ppc64le/pem_rhel_9.mdx | 2 +- .../installing/linux_ppc64le/pem_sles_12.mdx | 6 ++-- .../installing/linux_ppc64le/pem_sles_15.mdx | 6 ++-- .../pem/9/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/pem_centos_7.mdx | 2 +- .../installing/linux_x86_64/pem_debian_10.mdx | 2 +- .../installing/linux_x86_64/pem_debian_11.mdx | 2 +- .../linux_x86_64/pem_other_linux_8.mdx | 2 +- .../linux_x86_64/pem_other_linux_9.mdx | 2 +- .../9/installing/linux_x86_64/pem_rhel_7.mdx | 2 +- .../9/installing/linux_x86_64/pem_rhel_8.mdx | 2 +- .../9/installing/linux_x86_64/pem_rhel_9.mdx | 2 +- .../9/installing/linux_x86_64/pem_sles_12.mdx | 6 ++-- .../9/installing/linux_x86_64/pem_sles_15.mdx | 6 ++-- .../installing/linux_x86_64/pem_ubuntu_18.mdx | 2 +- .../installing/linux_x86_64/pem_ubuntu_20.mdx | 2 +- .../installing/linux_x86_64/pem_ubuntu_22.mdx | 2 +- .../linux_ppc64le/index.mdx | 2 +- .../linux_ppc64le/pem_agent_rhel_8.mdx | 2 +- .../linux_ppc64le/pem_agent_rhel_9.mdx | 2 +- .../linux_ppc64le/pem_agent_sles_12.mdx | 6 ++-- .../linux_ppc64le/pem_agent_sles_15.mdx | 6 ++-- .../linux_x86_64/index.mdx | 2 +- .../linux_x86_64/pem_agent_centos_7.mdx | 2 +- .../linux_x86_64/pem_agent_debian_10.mdx | 2 +- .../linux_x86_64/pem_agent_debian_11.mdx | 2 +- .../linux_x86_64/pem_agent_other_linux_8.mdx | 2 +- .../linux_x86_64/pem_agent_other_linux_9.mdx | 2 +- .../linux_x86_64/pem_agent_rhel_7.mdx | 2 +- .../linux_x86_64/pem_agent_rhel_8.mdx | 2 +- .../linux_x86_64/pem_agent_rhel_9.mdx | 2 +- .../linux_x86_64/pem_agent_sles_12.mdx | 6 ++-- .../linux_x86_64/pem_agent_sles_15.mdx | 6 ++-- .../linux_x86_64/pem_agent_ubuntu_18.mdx | 2 +- .../linux_x86_64/pem_agent_ubuntu_20.mdx | 2 +- .../linux_x86_64/pem_agent_ubuntu_22.mdx | 2 +- .../1/installing/linux_ppc64le/index.mdx | 2 +- .../linux_ppc64le/pgbouncer_rhel_8.mdx | 6 ++-- .../linux_ppc64le/pgbouncer_rhel_9.mdx | 6 ++-- .../linux_ppc64le/pgbouncer_sles_12.mdx | 6 ++-- .../linux_ppc64le/pgbouncer_sles_15.mdx | 6 ++-- .../1/installing/linux_x86_64/index.mdx | 2 +- .../linux_x86_64/pgbouncer_centos_7.mdx | 4 +-- .../linux_x86_64/pgbouncer_debian_10.mdx | 2 +- .../linux_x86_64/pgbouncer_debian_11.mdx | 2 +- .../linux_x86_64/pgbouncer_other_linux_8.mdx | 6 ++-- .../linux_x86_64/pgbouncer_other_linux_9.mdx | 6 ++-- .../linux_x86_64/pgbouncer_rhel_7.mdx | 6 ++-- .../linux_x86_64/pgbouncer_rhel_8.mdx | 4 +-- .../linux_x86_64/pgbouncer_rhel_9.mdx | 4 +-- .../linux_x86_64/pgbouncer_sles_12.mdx | 6 ++-- .../linux_x86_64/pgbouncer_sles_15.mdx | 6 ++-- .../linux_x86_64/pgbouncer_ubuntu_18.mdx | 2 +- .../linux_x86_64/pgbouncer_ubuntu_20.mdx | 2 +- .../linux_x86_64/pgbouncer_ubuntu_22.mdx | 2 +- .../pge/15/installing/linux_x86_64/index.mdx | 2 +- .../installing/linux_x86_64/pge_centos_7.mdx | 4 +-- .../installing/linux_x86_64/pge_debian_10.mdx | 2 +- .../installing/linux_x86_64/pge_debian_11.mdx | 2 +- .../linux_x86_64/pge_other_linux_8.mdx | 6 ++-- .../linux_x86_64/pge_other_linux_9.mdx | 6 ++-- .../15/installing/linux_x86_64/pge_rhel_7.mdx | 6 ++-- .../15/installing/linux_x86_64/pge_rhel_8.mdx | 4 +-- .../15/installing/linux_x86_64/pge_rhel_9.mdx | 4 +-- .../installing/linux_x86_64/pge_ubuntu_18.mdx | 2 +- .../installing/linux_x86_64/pge_ubuntu_20.mdx | 2 +- .../installing/linux_x86_64/pge_ubuntu_22.mdx | 2 +- .../4/installing/linux_ppc64le/index.mdx | 2 +- .../linux_ppc64le/pgpool_rhel_8.mdx | 6 ++-- .../linux_ppc64le/pgpool_rhel_9.mdx | 6 ++-- .../linux_ppc64le/pgpool_sles_12.mdx | 6 ++-- .../linux_ppc64le/pgpool_sles_15.mdx | 6 ++-- .../4/installing/linux_x86_64/index.mdx | 2 +- .../linux_x86_64/pgpool_centos_7.mdx | 4 +-- .../linux_x86_64/pgpool_debian_10.mdx | 2 +- .../linux_x86_64/pgpool_debian_11.mdx | 2 +- .../linux_x86_64/pgpool_other_linux_8.mdx | 6 ++-- .../linux_x86_64/pgpool_other_linux_9.mdx | 6 ++-- .../installing/linux_x86_64/pgpool_rhel_7.mdx | 6 ++-- .../installing/linux_x86_64/pgpool_rhel_8.mdx | 4 +-- .../installing/linux_x86_64/pgpool_rhel_9.mdx | 4 +-- .../linux_x86_64/pgpool_sles_12.mdx | 6 ++-- .../linux_x86_64/pgpool_sles_15.mdx | 6 ++-- .../linux_x86_64/pgpool_ubuntu_18.mdx | 2 +- .../linux_x86_64/pgpool_ubuntu_20.mdx | 2 +- .../linux_x86_64/pgpool_ubuntu_22.mdx | 2 +- .../linux_ppc64le/index.mdx | 2 +- .../linux_ppc64le/pgpoolext_rhel_8.mdx | 6 ++-- .../linux_ppc64le/pgpoolext_rhel_9.mdx | 6 ++-- .../linux_ppc64le/pgpoolext_sles_12.mdx | 6 ++-- .../linux_ppc64le/pgpoolext_sles_15.mdx | 6 ++-- .../linux_x86_64/index.mdx | 2 +- .../linux_x86_64/pgpoolext_centos_7.mdx | 4 +-- .../linux_x86_64/pgpoolext_debian_10.mdx | 2 +- .../linux_x86_64/pgpoolext_debian_11.mdx | 2 +- .../linux_x86_64/pgpoolext_other_linux_8.mdx | 6 ++-- .../linux_x86_64/pgpoolext_other_linux_9.mdx | 6 ++-- .../linux_x86_64/pgpoolext_rhel_7.mdx | 6 ++-- .../linux_x86_64/pgpoolext_rhel_8.mdx | 4 +-- .../linux_x86_64/pgpoolext_rhel_9.mdx | 4 +-- .../linux_x86_64/pgpoolext_sles_12.mdx | 6 ++-- .../linux_x86_64/pgpoolext_sles_15.mdx | 6 ++-- .../linux_x86_64/pgpoolext_ubuntu_18.mdx | 2 +- .../linux_x86_64/pgpoolext_ubuntu_20.mdx | 2 +- .../linux_x86_64/pgpoolext_ubuntu_22.mdx | 2 +- .../3.2/installing/linux_ppc64le/index.mdx | 2 +- .../linux_ppc64le/postgis_rhel_8.mdx | 6 ++-- .../linux_ppc64le/postgis_rhel_9.mdx | 6 ++-- .../linux_ppc64le/postgis_sles_12.mdx | 6 ++-- .../linux_ppc64le/postgis_sles_15.mdx | 6 ++-- .../3.2/installing/linux_x86_64/index.mdx | 2 +- .../linux_x86_64/postgis_centos_7.mdx | 4 +-- .../linux_x86_64/postgis_debian_10.mdx | 2 +- .../linux_x86_64/postgis_debian_11.mdx | 2 +- .../linux_x86_64/postgis_other_linux_8.mdx | 6 ++-- .../linux_x86_64/postgis_other_linux_9.mdx | 6 ++-- .../linux_x86_64/postgis_rhel_7.mdx | 6 ++-- .../linux_x86_64/postgis_rhel_8.mdx | 4 +-- .../linux_x86_64/postgis_rhel_9.mdx | 4 +-- .../linux_x86_64/postgis_sles_12.mdx | 6 ++-- .../linux_x86_64/postgis_sles_15.mdx | 6 ++-- .../linux_x86_64/postgis_ubuntu_18.mdx | 2 +- .../linux_x86_64/postgis_ubuntu_20.mdx | 2 +- .../linux_x86_64/postgis_ubuntu_22.mdx | 2 +- 491 files changed, 1987 insertions(+), 1987 deletions(-) diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/index.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/index.mdx index 405a2b69ff5..a097b53ec1f 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/index.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/index.mdx @@ -10,7 +10,7 @@ navigation: - postgresql_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx index fafea1fe49e..9b1cabf0563 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_8.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on RHEL 8 ppc64le Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,19 +31,19 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx index 99b0f4470a5..57c6751499e 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_rhel_9.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on RHEL 9 ppc64le Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,19 +31,19 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-9-${ARCH}-rpms" ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx index 7a5f9e698c4..cf44197df80 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_12.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on SLES 12 ppc64le Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,13 +31,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx index f50f3ffb91b..c09677b6239 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_ppc64le/postgresql_sles_15.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on SLES 15 ppc64le Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,14 +31,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/index.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/index.mdx index b6b14fb3987..4e8227c12c2 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/index.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/index.mdx @@ -19,7 +19,7 @@ navigation: - postgresql_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_centos_7.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_centos_7.mdx index ca3f998f15a..1fb3e6d14ce 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_centos_7.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_centos_7.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on CentOS 7 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,7 +31,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_10.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_10.mdx index 2944bed8d26..e8024039709 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_10.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_10.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on Debian 10 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx index c6259f15f71..62d817c16c8 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_debian_11.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on Debian 11 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx index 3453cf1818e..b43454a72e8 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_8.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on AlmaLinux 8 or Rocky Linux 8 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,23 +31,23 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell dnf config-manager --set-enabled powertools ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx index c6990a216b4..9883b477c44 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_other_linux_9.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on AlmaLinux 9 or Rocky Linux 9 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,23 +31,23 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell dnf config-manager --set-enabled powertools ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_7.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_7.mdx index 67b78e8dda2..82eab0899f2 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_7.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_7.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on RHEL 7 or OL 7 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,13 +31,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx index 531c96d473d..f461b7dbf08 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_8.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on RHEL 8 or OL 8 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,17 +31,17 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx index 7a9d41f6ab6..ea968986840 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_rhel_9.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on RHEL 9 or OL 9 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,17 +31,17 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-9-${ARCH}-rpms" ``` -- Disable the built-in PostgreSQL module +- Disable the built-in PostgreSQL module: ```shell dnf -qy module disable postgresql ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx index cc7ee086ebe..496cd607ca6 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_12.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on SLES 12 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,13 +31,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx index a0cc5180e16..3db686f432a 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_sles_15.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on SLES 15 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). @@ -31,14 +31,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_18.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_18.mdx index d1f1a988bda..7c609647e78 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_18.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_18.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on Ubuntu 18.04 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx index aed6d5a8439..52ca7708bd4 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_20.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on Ubuntu 20.04 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). diff --git a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx index 1474cc92dd7..46c51df78dd 100644 --- a/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx +++ b/advocacy_docs/supported-open-source/postgresql/installing/linux_x86_64/postgresql_ubuntu_22.mdx @@ -7,7 +7,7 @@ title: Installing PostgreSQL on Ubuntu 22.04 x86_64 Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. !!! Note Rather than use the EDB repository, you can obtain PostgreSQL installers and installation packages from the [PostgreSQL community downloads page](https://www.postgresql.org/download/). diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx index 7e146ff360c..45bfac28119 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx index 6095701477c..4316f3e2a1a 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx index 741fc9afc3d..0bed756fad1 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_12.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx index cd73e2b6bdc..a0a1f248390 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/edbplus_sles_15.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,14 +33,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/index.mdx b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/index.mdx index b4915843470..ba38eb86c08 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - edbplus_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_centos_7.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_centos_7.mdx index 8470925b61c..2ba8f55332c 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_centos_7.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_centos_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,7 +33,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_10.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_10.mdx index 2c16d1133d7..2534a2aefb6 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_10.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_10.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx index 95e488c9905..f1f782d7117 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_debian_11.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx index 87375b04a54..d5e6dabc419 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx index a38a22a3ee9..4b82829f2fb 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_other_linux_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_7.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_7.mdx index 19d9a0935ab..0a7af912aa4 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_7.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx index bc5bde9f2fb..7b9cac17632 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx index f011a985423..da34085d24d 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx index 9a960797269..2034fb44de5 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_12.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx index 372afcd2842..c05596e2c82 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_sles_15.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,14 +33,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_18.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_18.mdx index 9127b34b748..2054d93401c 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_18.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_18.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx index 08480372379..a0b0eee2b37 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_20.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx index 1118e4c5ffc..bf7e7112e98 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/edbplus_ubuntu_22.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/edb_plus/41/installing/linux_x86_64/index.mdx b/product_docs/docs/edb_plus/41/installing/linux_x86_64/index.mdx index 6d16709d316..6fc857751b3 100644 --- a/product_docs/docs/edb_plus/41/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/edb_plus/41/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - edbplus_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx index b2368b04fa5..cd5bb9276a5 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_8.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx index 256ec94bf40..9f24c34c58d 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_rhel_9.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx index e219ad2f1f7..a72db4dc70b 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_12.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx index 621bb93c910..548ad0f3d5d 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/efm_sles_15.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/efm/4/installing/linux_ppc64le/index.mdx b/product_docs/docs/efm/4/installing/linux_ppc64le/index.mdx index f556118eddd..1a3c7093259 100644 --- a/product_docs/docs/efm/4/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/efm/4/installing/linux_ppc64le/index.mdx @@ -17,7 +17,7 @@ navigation: - efm_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_centos_7.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_centos_7.mdx index 747939aea06..406f537e858 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_centos_7.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_centos_7.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_10.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_10.mdx index f669a42732f..b37428d5abb 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_10.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_10.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx index 0fb96b53083..91945fd53a6 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_debian_11.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx index 48815da3ae6..a3aa26bd88c 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_8.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx index 14a47807335..dc548b84296 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_other_linux_9.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_7.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_7.mdx index 589f72e9270..f33e3ea5e8c 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_7.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_7.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx index ca424d4c98e..a4c7f824031 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_8.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx index c6cc53f6ca3..a4cca2907dc 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_rhel_9.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx index f19c8ca1dab..70d00690261 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_12.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx index 9eb307813ac..c55f201fdd5 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_sles_15.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_18.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_18.mdx index 15042c78f1a..d859af00fdb 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_18.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_18.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx index c9fca0ef5cd..14f30ae98f1 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_20.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx index af4849f945f..46b1218bbe3 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/efm_ubuntu_22.mdx @@ -13,13 +13,13 @@ redirects: Before you begin the installation process: -- Install Postgres on the same host (not needed for witness nodes) +- Install Postgres on the same host (not needed for witness nodes). - See [Installing EDB Postgres Advanced Server](/epas/latest/epas_inst_linux) - See [PostgreSQL Downloads](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/efm/4/installing/linux_x86_64/index.mdx b/product_docs/docs/efm/4/installing/linux_x86_64/index.mdx index d7320b0b34d..f6fd5164bbd 100644 --- a/product_docs/docs/efm/4/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/efm/4/installing/linux_x86_64/index.mdx @@ -26,7 +26,7 @@ navigation: - efm_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx index 02e90eeb2f3..0f1650d3b84 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,15 +34,15 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -53,7 +53,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx index ce830b92d04..d0c738954f8 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,20 +34,20 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx index 2738049f780..981eb3f1e3a 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,11 +34,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx index d04c4966643..19f261fcbb0 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx index adf3ceaf823..cb969d9023e 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/index.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/index.mdx index 4057676a0b0..394693b4f37 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/index.mdx @@ -18,7 +18,7 @@ navigation: - epas_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx index 07efd6cc517..6b24871c75d 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` @@ -45,7 +45,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -55,13 +55,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -69,7 +69,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -79,7 +79,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -87,9 +87,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -98,7 +98,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -107,7 +107,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -117,7 +117,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -131,7 +131,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx index f5fcd29ceec..80d3286415c 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx index 26452664caf..5397bd59bf2 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx index 201df5f00f7..8c436b8a209 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx index 802704e904b..8c7ffe76417 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx index 7e4cc198fd5..6c8e4fe7880 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx index 2cdb5d3aec0..a6cc561cee4 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,18 +34,18 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx index 38e806c5999..2495e08caaa 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/11/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as11`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx index 8539bc38ae2..3772f7bef44 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx index e2cac95fc36..a9415b05bfe 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-11-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as11/bin/edb-as-11-setup initdb sudo systemctl start edb-as-11 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx index 0dc20b58447..b7c487927f9 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx index f5bfff329c7..28c6b56ac1c 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx index 41393f7f67b..5b44b3d75e4 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 11, the package name would be `edb-as11-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 11, the package name is `edb-as11-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/index.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/index.mdx index 21aea65e285..e8137f1c3df 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/index.mdx @@ -27,7 +27,7 @@ navigation: - epas_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx index b27e69cc1a2..e03579fe03d 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,15 +34,15 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -53,7 +53,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx index 46de00c6177..3b8cac0238a 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,20 +34,20 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx index a49e7e5a27b..3e444c6600e 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,11 +34,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx index 4b9152dd2dc..49bb168a9a7 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx index e29010c529a..eed6caab5e2 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/index.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/index.mdx index 653ec118812..cbd6f39813d 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/index.mdx @@ -18,7 +18,7 @@ navigation: - epas_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx index c20d4cda14b..f966a66e147 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` @@ -45,7 +45,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -55,13 +55,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -69,7 +69,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -79,7 +79,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -87,9 +87,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -98,7 +98,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -107,7 +107,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -117,7 +117,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -131,7 +131,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx index da8001119b4..1f3aa2525f7 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx index f6fb10af3d3..c5d7441e94a 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx index c4876480497..1ff3a9b112d 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx index fcc1e9a8947..96d22b8a253 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx index e4b9bc19843..e25bb6a8524 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx index ad0e6dc17a5..ba33cd2c9ff 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,18 +34,18 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx index f81e07fa64b..aef7056768e 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/12/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as12`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx index f2e75d4d32f..077cb05acac 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx index 64b9bcbc9a5..280a85650f7 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-12-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as12/bin/edb-as-12-setup initdb sudo systemctl start edb-as-12 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx index 222a2ae71a9..77881730bbc 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx index fa3907f4b9a..0b27809f1fb 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx index d94bf09b3d3..36d1122c85a 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 12, the package name would be `edb-as12-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 12, the package name is `edb-as12-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/index.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/index.mdx index 99dd429a918..50c6f13a08a 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/index.mdx @@ -27,7 +27,7 @@ navigation: - epas_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx index 236d086ecdb..64bdd9b77c1 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,15 +34,15 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -53,7 +53,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx index 29cfffbda46..f25af0f0846 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,20 +34,20 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx index e09657006f6..119b3d88ef0 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,11 +34,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx index 744d2f8d194..96ca0c457d7 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx index 6762f3fcf11..e7acb2a4258 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/index.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/index.mdx index a9917c63a79..ceba742881e 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/index.mdx @@ -18,7 +18,7 @@ navigation: - epas_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx index db6d4eac24f..db6d66a71e5 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` @@ -45,7 +45,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -55,13 +55,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -69,7 +69,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -79,7 +79,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -87,9 +87,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -98,7 +98,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -107,7 +107,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -117,7 +117,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -131,7 +131,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx index 9f712b5e1c8..fa47bb6ff8f 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx index 5a86a7ff287..e415c5f52b6 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx index 6e15bcab71d..02794a41518 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx index e14dfcfc691..7108a5586f4 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx index 89761d28f3a..4ab029088f3 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx index d67963990d0..0189a243189 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,18 +34,18 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx index e1689a0b1e3..59b97ab087b 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/13/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as13`. +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 -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx index 62b905d73f0..74fcad35575 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx index 9936bfdebc2..a29eee83c7e 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-13-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as13/bin/edb-as-13-setup initdb sudo systemctl start edb-as-13 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx index c134e425f05..6f9e612e9e6 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx index 1b9652a775b..b0f4bfca8cb 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx index 206e4e60a5f..968895d87ce 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 13, the package name would be `edb-as13-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 13, the package name is `edb-as13-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/index.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/index.mdx index bc42b9b5bc1..81c31417e1a 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/index.mdx @@ -27,7 +27,7 @@ navigation: - epas_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx index dc4f4593e8d..13d4ef480e4 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,15 +34,15 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -53,7 +53,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx index e4d6a43bcfd..d025a5dab43 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,20 +34,20 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx index 4bbe1293368..781bb2e4ae4 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,11 +34,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx index 196b81ef1b9..8daed5b3501 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx index fd0d365694b..cd288bd90d6 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/index.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/index.mdx index 5d63853dafd..f60a1c84f29 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/index.mdx @@ -18,7 +18,7 @@ navigation: - epas_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx index 313ea779958..f33bb5f6b65 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` @@ -45,7 +45,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -55,13 +55,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -69,7 +69,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -79,7 +79,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -87,9 +87,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -98,7 +98,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -107,7 +107,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -117,7 +117,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -131,7 +131,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx index f22d6dae181..45b9850f7e9 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx index 847dac6302e..eedcb491035 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx index 2d22b064e7b..1f54101862b 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx index ce4aa5b5a4d..a3d044fc3f9 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx index 52b2170c865..2fce9ff259c 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx index 6c575e0c34c..34bcbbcd079 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,18 +34,18 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx index 08ad2229787..7d649c63989 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/14/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as14`. +Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash`, and the user's home directory is `/var/lib/edb/as14`. ## Initial configuration -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. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx index ab3f8fca820..c26981bc742 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx index 650ca0d62db..fa8dcd09882 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-14-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as14/bin/edb-as-14-setup initdb sudo systemctl start edb-as-14 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx index 5bebc2fced0..8cb23e779b5 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx index 739a6101b79..c3b5610a881 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx index e7adde7c80e..fc8a080eb83 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 14, the package name would be `edb-as14-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 14, the package name is `edb-as14-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../epas_guide/03_database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/index.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/index.mdx index c5bd2116dab..ecd62ff0040 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/index.mdx @@ -27,7 +27,7 @@ navigation: - epas_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx index fadb9f01f04..19194f58557 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,15 +34,15 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -53,7 +53,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx index b9d8718e83a..7f0cc553b0c 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,20 +34,20 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx index 0be46476011..91ac028db29 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,11 +34,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` @@ -55,7 +55,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -65,13 +65,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -79,7 +79,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -89,7 +89,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -97,9 +97,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -108,7 +108,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -117,7 +117,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -127,7 +127,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -141,7 +141,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx index f497ac63eb0..570eb32a30d 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx index 9205ac4472c..6a3607220ea 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/index.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/index.mdx index df67059f9f4..78f4ddbe958 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/index.mdx @@ -18,7 +18,7 @@ navigation: - epas_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx index ab0da72c2da..210a69b0e92 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` @@ -45,7 +45,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -55,13 +55,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -69,7 +69,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -79,7 +79,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -87,9 +87,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -98,7 +98,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -107,7 +107,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -117,7 +117,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -131,7 +131,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx index bf11f953fe5..ee48367ff64 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx index 430b8d0a97e..ccdf025428c 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx index 9ffbe1028fd..40ec76dc564 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx index f8acd3ad53f..69d9c1914e0 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx index b6effda2dcc..c50447914cb 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` @@ -51,7 +51,7 @@ Before you begin the installation process: sudo yum -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -61,13 +61,13 @@ sudo yum -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -75,7 +75,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -85,7 +85,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -93,9 +93,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -104,7 +104,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -113,7 +113,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -123,7 +123,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -137,7 +137,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx index 41177790cb4..333b703978b 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,18 +34,18 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- If you are also installing PostGIS, enable additional repositories to resolve dependencies: +- If you're also installing PostGIS, enable additional repositories to resolve dependencies: ```shell ARCH=$( /bin/arch ) subscription-manager repos --enable "codeready-builder-for-rhel-8-${ARCH}-rpms" ``` !!!note - If you are using a public cloud RHEL image, `subscription manager` may not be enabled and enabling it may incur unnecessary charges. Equivalent packages may be available under a different name such as `codeready-builder-for-rhel-8-rhui-rpms`. Consult the documentation for the RHEL image you are using to determine how to install `codeready-builder`. + If you're using a public cloud RHEL image, `subscription manager` might not be enabled. Enabling it might incur unnecessary charges. Equivalent packages might be available under a different name, such as `codeready-builder-for-rhel-8-rhui-rpms`. To determine how to install `codeready-builder`, consult the documentation for the RHEL image you're using. ## Install the package @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx index 39e9d81371e..362a2a2e802 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,7 +34,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm @@ -53,7 +53,7 @@ Before you begin the installation process: sudo dnf -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -63,13 +63,13 @@ sudo dnf -y install Where `package_name` can be any of the available packages from the [available package list](/epas/15/installing/linux_install_details/rpm_packages/). -Installing the server package creates an operating system user named enterprisedb. The user is assigned a user ID (UID) and a group ID (GID). The user has no default password. Use the `passwd` command to assign a password for the user. The default shell for the user is `bash` and the user's home directory is `/var/lib/edb/as15`. +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/as15`. ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -77,7 +77,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -87,7 +87,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -95,9 +95,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -106,7 +106,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -115,7 +115,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -125,7 +125,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -139,7 +139,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx index e9b510cb09a..a39e1f8adbc 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,13 +34,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -63,9 +63,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -73,7 +73,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -83,7 +83,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -91,9 +91,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -102,7 +102,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -111,7 +111,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -121,7 +121,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -135,7 +135,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx index 6946d889b00..968fb55cc51 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -34,14 +34,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` @@ -64,9 +64,9 @@ Where `package_name` can be any of the available packages from the [available pa ## Initial configuration -This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +Getting started with your cluster involves logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. -First you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). +First, you need to initialize and start the database cluster. The `edb-as-15-setup` script creates a cluster in Oracle-compatible mode with the `edb` sample database in the cluster. To create a cluster in Postgres mode, see [Initializing the cluster in Postgres mode](../linux_install_details/managing_an_advanced_server_installation/specifying_cluster_options/#initializing-the-cluster-in-postgres-mode). ```shell sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb @@ -74,7 +74,7 @@ sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb sudo systemctl start edb-as-15 ``` -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -84,7 +84,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -92,9 +92,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -103,7 +103,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -112,7 +112,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -122,7 +122,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -136,7 +136,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx index 15f815af87e..f5b90bb7a53 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx index 29fd8ab36a4..aa941c6da61 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx index c53c6a48134..fcb4ee9e023 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -40,7 +40,7 @@ Before you begin the installation process: sudo apt-get -y install edb-as-server ``` -Where `` is the version of the EDB Postgres Advanced Server you are installing. For example, if you are installing version 15, the package name would be `edb-as15-server`. +Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 15, the package name is `edb-as15-server`. To install an individual component: @@ -54,7 +54,7 @@ Where `package_name` can be any of the available packages from the [available pa This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. -To work in your cluster, login as the enterprisedb user. Connect to the database server using the psql command line client (although you can use a client of your choice with the appropriate connection string). +To work in your cluster, log in as the enterprisedb user. Connect to the database server using the psql command-line client. Alternatively, you can use a client of your choice with the appropriate connection string. ```shell sudo su - enterprisedb @@ -64,7 +64,7 @@ psql edb The server runs with the `peer` or `ident` permission by default. You can change the authentication method by modifying the `pg_hba.conf` file. -Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). +Before changing the authentication method, assign a password to the database superuser, enterprisedb. For more information on changing the authentication, see [Modifying the pg_hba.conf file](../../database_administration/01_configuration_parameters/01_setting_new_parameters/#modifying-the-pg_hbaconf-file). ```sql ALTER ROLE enterprisedb IDENTIFIED BY password; @@ -72,9 +72,9 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; ## Experiment -Now you are ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. +Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First let's create a database to hold human resource information named `hr` using psql. +First, use psql create a database named `hr` to hold human resource information. ```sql # running in psql @@ -83,7 +83,7 @@ __OUTPUT__ CREATE DATABASE ``` -Connect to the `hr` database inside psql. +Connect to the `hr` database inside psql: ``` \c hr @@ -92,7 +92,7 @@ psql (15.2.0, server 15.2.0) You are now connected to database "hr" as user "enterprisedb". ``` -Create columns to hold department numbers, unique department names, and locations. +Create columns to hold department numbers, unique department names, and locations: ``` CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk @@ -102,7 +102,7 @@ __OUTPUT__ CREATE TABLE ``` -Insert values into the `dept` table. +Insert values into the `dept` table: ``` INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); @@ -116,7 +116,7 @@ __OUTPUT__ INSERT 0 1 ``` -View what is in the table by selecting the values from the table. +View the table data by selecting the values from the table: ``` SELECT * FROM dept; diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/index.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/index.mdx index 75acc83d834..e2ad57b7171 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/index.mdx @@ -27,7 +27,7 @@ navigation: - epas_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx index bd936ab5045..f5fd1a5859e 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx index 5585c74cf39..963b708a11a 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx index 9d28248d2c3..dfb892e452b 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_12.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx index 0ad85705dfc..25490b08645 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/eprs_sles_15.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,14 +33,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/eprs/7/installing/linux_ppc64le/index.mdx b/product_docs/docs/eprs/7/installing/linux_ppc64le/index.mdx index 5bac6af969a..db9f2bed46f 100644 --- a/product_docs/docs/eprs/7/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/eprs/7/installing/linux_ppc64le/index.mdx @@ -17,7 +17,7 @@ navigation: - eprs_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_centos_7.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_centos_7.mdx index ca35dda19d5..ce4b0248d9f 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_centos_7.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_centos_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,7 +33,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_10.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_10.mdx index 5226dca37f0..b7739f25dc3 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_10.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_10.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx index 3f2d6e6b695..5adfb4bdc68 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_debian_11.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx index 9c48e6dedfc..16918c9009b 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx index 5aca86f303e..6568172ede3 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_other_linux_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_7.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_7.mdx index 9560ef3f5f7..f143be1bf6e 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_7.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx index cf81d5cae3b..cdd662adc83 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx index 971baaf81e8..13a712afa08 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx index 828e3219c83..4d21e1bfe78 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_12.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx index d24e7ad64f0..315715b914c 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_sles_15.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,14 +33,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_18.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_18.mdx index eabb18276a2..cd0b7bd1d3a 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_18.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_18.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx index 7c6fa36bac4..47d57c72828 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_20.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx index fa37e6681d4..646efb170f6 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/eprs_ubuntu_22.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/eprs/7/installing/linux_x86_64/index.mdx b/product_docs/docs/eprs/7/installing/linux_x86_64/index.mdx index 28a3f20ea38..1cca5b841ae 100644 --- a/product_docs/docs/eprs/7/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/eprs/7/installing/linux_x86_64/index.mdx @@ -26,7 +26,7 @@ navigation: - eprs_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx index 5f7d5efe5bb..11754320209 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx index c01cb61b075..c32383cee69 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx index 19bfebd0272..9d52a6bf688 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx index ef9202c2f9a..8fc856b143a 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/hadoop_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/index.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/index.mdx index 8c0f1c10e53..7bd79cfb573 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - hadoop_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_centos_7.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_centos_7.mdx index e490aa62e15..ef0b35df80b 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_centos_7.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_10.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_10.mdx index 0e2fb6831f4..e9996e094fe 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_10.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx index ec8e1a25b19..ee33b813c44 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx index e23cc785a2f..9b275453be5 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx index 4fe7f994a67..6b86c88b7c9 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_7.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_7.mdx index c051f1de46f..1716fa23f44 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_7.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx index dae941bd758..a5d17d908e4 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx index d3c1c6d1902..473ed4a376c 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx index cc76b1fd566..a35e11345b7 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx index 9da54741f71..e089e9a479e 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_18.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_18.mdx index f7c5a03b40d..2a9be4081a2 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_18.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx index 8ff21616e32..2ab9913348e 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx index 6908ec8c453..3d23902b546 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/hadoop_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/index.mdx b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/index.mdx index d6e166b5621..e2ff0edadd5 100644 --- a/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/hadoop_data_adapter/2/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - hadoop_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/index.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/index.mdx index 42d6fcf0a5b..f8f88dac9fe 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - jdbc_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_8.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_8.mdx index 0eea4619b6f..fee601d3ea0 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_8.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,11 +43,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_9.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_9.mdx index 715f6816201..dd72026bfbc 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_9.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,11 +43,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_12.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_12.mdx index be99c7e5151..2f7493eaa0c 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_12.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,13 +43,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_15.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_15.mdx index 90f37152251..2f2ca4284b4 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_15.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_ppc64le/jdbc_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,14 +43,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/index.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/index.mdx index ec33e1e7afd..e0f25e4c80a 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - jdbc_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_centos_7.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_centos_7.mdx index 5157f75a445..4e277aebb52 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_centos_7.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_centos_7.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,7 +43,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_10.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_10.mdx index 5bb279f4933..1f06aa38900 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_10.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_10.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_11.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_11.mdx index e6bc5787380..b9a269d9e58 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_11.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_debian_11.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_8.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_8.mdx index 21c97d19796..27c115f652e 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_8.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,13 +43,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_9.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_9.mdx index b41ad72d0a9..e6201aa78c3 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_9.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_other_linux_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,13 +43,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_7.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_7.mdx index 4beb75fd79c..568b8c3be9b 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_7.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_7.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,13 +43,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_8.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_8.mdx index 49c1c425a17..ad6d989ce40 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_8.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_8.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,7 +43,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_9.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_9.mdx index 88361ad96cc..70e4239a81f 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_9.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_rhel_9.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,7 +43,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_12.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_12.mdx index d6a933b8285..4ee5798b9c1 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_12.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_12.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,13 +43,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_15.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_15.mdx index c935bb7b2f4..6f242b75d9e 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_15.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_sles_15.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -43,14 +43,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_18.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_18.mdx index ae5de0c19f8..4ddce819ee5 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_18.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_18.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx index 4ea3511f7b3..8fa7f773518 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_20.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx index e9d0c8cb9dd..63203f3b3d5 100644 --- a/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx +++ b/product_docs/docs/jdbc_connector/42.5.4.1/installing/linux_x86_64/jdbc_ubuntu_22.mdx @@ -23,7 +23,7 @@ Before you begin the installation process: - Review [Supported JDBC distributions](/jdbc_connector/latest/02_requirements_overview/#supported-jdk-distribution). -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/index.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/index.mdx index 17655316382..30eb9ec70de 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - mtk_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx index 8ed2c8b1e8b..1b3b8989d03 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx index bedf40ef31b..f40e62ca1c1 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx index 32e4b01c525..9eb37639dff 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_12.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx index ddb5b338615..b672ca956bc 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_ppc64le/mtk_sles_15.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,14 +33,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/index.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/index.mdx index 4a93c59e1ca..aac1edce262 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - mtk_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx index 452eea283e0..e9cb193dc7d 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_centos_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,7 +33,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx index 5b9abcadc8f..ad9b1e5825c 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_10.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx index f07feb70155..33da22f5a2f 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_debian_11.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx index 4755e69bf17..d4ecfd1f5a2 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx index 6859788238d..e7049395736 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_other_linux_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx index 5e85c502d03..e59dc64df8e 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,7 +33,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Address other prerequisites +- Address other prerequisites: ```shell # Install the EPEL repository: sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx index 5dd82715cb4..ddbd15a38f3 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx index 7191a883e7d..a9d2068a5c1 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx index d4782505260..8632a26c0c3 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_12.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,13 +33,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx index 1350ee0177a..0a8bb067c91 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_sles_15.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -33,14 +33,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx index 4169fb19ddd..b01e93ccb98 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_18.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx index bb33e859024..de0421c983f 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_20.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx index 72d8e1ddb84..cb66e27282a 100644 --- a/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx +++ b/product_docs/docs/migration_toolkit/55/installing/linux_x86_64/mtk_ubuntu_22.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/index.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/index.mdx index 6867fb53854..d2526dc4868 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - mongo_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx index b9e0fdaa08a..8cfbc21dcff 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx index e849255824a..4d757153289 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx index f99c3f9afc4..eac45bd5069 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx index 6a55dc77e7c..157004ec7ef 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_ppc64le/mongo_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/index.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/index.mdx index fd34d74d503..ef0dac228ec 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - mongo_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_centos_7.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_centos_7.mdx index e3bbf0a5b2b..ee94655c07b 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_centos_7.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_10.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_10.mdx index f72e0b76043..1628ac365c1 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_10.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx index 66a6ebc9ef2..94f61ecf75a 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx index 482321f53c5..ddd99de21c9 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx index 1eda6d5d827..a4facfe3b6c 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_7.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_7.mdx index 2d1b069d3ba..9ec672e9df3 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_7.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx index fed3d55fa26..bfeeaf49ac6 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx index 93f785f6526..a0d8801b8fe 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx index cbd3491cfed..2e85c617b13 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx index 70b5c13188c..d40769da60d 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_18.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_18.mdx index 0f4ffd7419f..3d26378928d 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_18.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx index 9901fcc18cf..b983e0ba4ff 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx index 518a986e7ec..0f6b3507534 100644 --- a/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx +++ b/product_docs/docs/mongo_data_adapter/5/installing/linux_x86_64/mongo_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/index.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/index.mdx index 1fd4b278ea3..fa25126dd00 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - mysql_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx index fbab053a443..18b831a2d7b 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx index df28b7f95f3..910afbb36d2 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx index 86fcd8287e2..0e333d089cf 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,25 +39,25 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the MySQL community repository +- Install the MySQL community repository: ```shell sudo 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 +- Enable the MySQL8 repository and disable the MySQL 5 repository: ```shell sudo zypper modifyrepo -e mysql80-community sudo zypper modifyrepo -d mysql57-community ``` -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx index 7405cb0dbba..9be36b6b434 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_ppc64le/mysql_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,26 +39,26 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the MySQL community repository +- Install the MySQL community repository: ```shell sudo 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 +- Enable the MySQL8 repository and disable the MySQL 5 repository: ```shell sudo zypper modifyrepo -e mysql80-community sudo zypper modifyrepo -d mysql57-community ``` -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/index.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/index.mdx index 3907c52a3cc..d6e556f181e 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - mysql_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_centos_7.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_centos_7.mdx index e35b2ef32c0..83d0f78b10a 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_centos_7.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,17 +39,17 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Download and install the MySQL repo +- Download and install the MySQL repo: ```shell sudo yum -y install https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm ``` -- Enable the MySQL repo +- Enable the MySQL repo: ```shell # For MySQL 8: diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_10.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_10.mdx index 6c4980528fc..6b5231ae149 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_10.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Download the GPG key to your APT keyring directly using the apt-key utility +- Download the GPG key to your APT keyring directly using the apt-key utility: ```shell sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3A79BD29 ``` -- Install and configure the MySQL repo +- Install and configure the MySQL repo: ```shell # For MySQL 8: diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx index 9595367baf3..44ef11ece8d 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Address other prerequisites +- Address other prerequisites: ```shell # Download the GPG key to your APT keyring directly using the apt-key utility: diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx index 6c6ec8d241b..e56fea3ce7b 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx index 163368ca5b8..a5d0fe201f7 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_7.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_7.mdx index 6e7c7a54a35..9f9b2c34ab1 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_7.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,23 +39,23 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` -- Download and install the MYSQL repo +- Download and install the MYSQL repo: ```shell sudo yum -y install https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm ``` -- Enable the MYSQL repo +- Enable the MYSQL repo: ```shell # For MySQL 8: diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx index 61908cc2900..312d2805f9f 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx index 5ecf21976ac..0ec44ff543b 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx index ebb5f783447..88b12988b67 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,25 +39,25 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the MySQL community repository +- Install the MySQL community repository: ```shell sudo 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 +- Enable the MySQL8 repository and disable the MySQL 5 repository: ```shell sudo zypper modifyrepo -e mysql80-community sudo zypper modifyrepo -d mysql57-community ``` -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx index 0a2d5d6771a..50f049b4de7 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,26 +39,26 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the MySQL community repository +- Install the MySQL community repository: ```shell sudo 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 +- Enable the MySQL8 repository and disable the MySQL 5 repository: ```shell sudo zypper modifyrepo -e mysql80-community sudo zypper modifyrepo -d mysql57-community ``` -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_18.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_18.mdx index 8d6a3451629..a68421e0fa7 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_18.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Address other prerequisites +- Address other prerequisites: ```shell # Download the GPG key to your APT keyring directly using the apt-key utility: diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx index cea0bf26fa9..d1cf4276103 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx index 2f3cefd8bfe..ad3ad0725ec 100644 --- a/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx +++ b/product_docs/docs/mysql_data_adapter/2/installing/linux_x86_64/mysql_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/index.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/index.mdx index e2bbd20aebb..225be426ffb 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - ocl_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx index 407a18e40f1..644e90c31bf 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx index e41b1ec13f0..9decf1cec76 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx index 6aa814f8430..5fe93acde6f 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx index 0a8aa7aeca9..a1a18975d88 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_ppc64le/ocl_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/index.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/index.mdx index 79825e363df..ccdde6b0a74 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - ocl_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_centos_7.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_centos_7.mdx index 417a2f4acb3..32bfdf98c07 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_centos_7.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_10.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_10.mdx index 1cac9322ae2..60ef298a9d9 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_10.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx index 8dc90ce54f6..cf16ad93370 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx index c1700215935..d3121909bd1 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx index 744efce99ca..4f3d9a98536 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_7.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_7.mdx index 30ef24cc1d4..eaffe882b4a 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_7.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx index 9436df469fc..37433595a0e 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx index 0a9ef598341..4a6de89f2d5 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx index 4e958947ee7..4db2c7c0b6f 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx index 1371e2ddf4f..b1e9b35f2dc 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_18.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_18.mdx index 3f94a00d9f5..9651d44a898 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_18.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx index 9c76c3b0b7b..bb89532199f 100644 --- a/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx +++ b/product_docs/docs/ocl_connector/14/installing/linux_x86_64/ocl_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/index.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/index.mdx index e2bbd20aebb..225be426ffb 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - ocl_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx index 47a4b1a65a4..e807b9a1b2a 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx index 5ed2ea34859..f062e997850 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx index c94b0b0ab72..41e5c0199d8 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx index f19d5d61583..922ba0b2c23 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_ppc64le/ocl_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/index.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/index.mdx index 1df66e21511..7f0847898a3 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - ocl_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_centos_7.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_centos_7.mdx index fc83c755048..f79c6dbaa82 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_centos_7.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_10.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_10.mdx index a7607d619fe..d19a2b41a28 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_10.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx index a76bfb3cb21..ae3cb3405ac 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx index 2969811a6b8..7e4f344c2cb 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx index 357d8a8f72d..1df2cd2c0fd 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_7.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_7.mdx index 9d21451ba0b..19070b5ce72 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_7.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx index ee0ccf118c7..37b76de73f3 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx index bc86669f3d5..cc84cedea39 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx index 9303841f8fb..863f6bdb4cb 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx index f808e39de3f..54f2f854c18 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_18.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_18.mdx index 717d694f49e..f791fc3f257 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_18.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx index 4de09b2438f..e4c9c508378 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx index 96d81a5f3a0..2cf14134c10 100644 --- a/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx +++ b/product_docs/docs/ocl_connector/15/installing/linux_x86_64/ocl_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/index.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/index.mdx index 24c35c42528..2051bc77f7d 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - odbc_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx index 394a6a48aaf..43763848216 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx index 1af5834c9c1..0bb9aab169a 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx index 76d2eab1d0f..eadd467df54 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx index 66227e5f15f..ac20d9f0696 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_ppc64le/odbc_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/index.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/index.mdx index 77b357ec0d2..f8815ac6a4c 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - odbc_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_centos_7.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_centos_7.mdx index c80582d18ce..b6d97d5a3a4 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_centos_7.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_10.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_10.mdx index 09463aa8551..c4a97d2488a 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_10.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx index e3e94f62bff..97225a3a6ca 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx index 94dae773be9..918cf6ef710 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx index b94d2a6318d..77d9049ea8c 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_7.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_7.mdx index 7afaf627827..7f559cef450 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_7.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx index 64cfb422b31..2d99bb0458a 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx index 0515e3c9425..b2a9237eaed 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx index d2b39f1a1b2..036e4128907 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx index dc48cac2a23..cca6bf4b2ff 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_18.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_18.mdx index 577f75646a8..f1a0276bace 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_18.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx index e5eed5ecb79..74196019ffd 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx index 60cc33e902f..b780e704aac 100644 --- a/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx +++ b/product_docs/docs/odbc_connector/13/installing/linux_x86_64/odbc_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing/linux_ppc64le/index.mdx b/product_docs/docs/pem/8/installing/linux_ppc64le/index.mdx index cf46ef4b31d..bd416f10392 100644 --- a/product_docs/docs/pem/8/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/pem/8/installing/linux_ppc64le/index.mdx @@ -17,7 +17,7 @@ navigation: - pem_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_8.mdx b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_8.mdx index b3f840ce754..baf63d9ce0f 100644 --- a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_8.mdx +++ b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_8.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_9.mdx b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_9.mdx index 559b1533294..9ff8005f7e0 100644 --- a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_9.mdx +++ b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_rhel_9.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_12.mdx b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_12.mdx index b6dfb9a2131..d7c0f2a107a 100644 --- a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_12.mdx +++ b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_12.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,13 +46,13 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_15.mdx b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_15.mdx index ebfa6a0afe6..ff9f9c51e17 100644 --- a/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_15.mdx +++ b/product_docs/docs/pem/8/installing/linux_ppc64le/pem_sles_15.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,7 +46,7 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -57,7 +57,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/index.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/index.mdx index 113089919b8..449a28e3cfc 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/index.mdx @@ -26,7 +26,7 @@ navigation: - pem_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_centos_7.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_centos_7.mdx index e8d93c7f10a..05ef5b0a7ff 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_centos_7.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_centos_7.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_10.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_10.mdx index a0154d4672c..79ba1612af3 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_10.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_10.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_11.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_11.mdx index 376d1ed8678..4f2577265b7 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_11.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_debian_11.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_8.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_8.mdx index 43009817530..ab35eaf12a9 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_8.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_8.mdx @@ -18,7 +18,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_9.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_9.mdx index 5415e049ae6..0168048ba24 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_9.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_other_linux_9.mdx @@ -18,7 +18,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_7.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_7.mdx index a3376575db7..2c553141972 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_7.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_7.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_8.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_8.mdx index 4933c0eb673..6a97d006fdf 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_8.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_8.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_9.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_9.mdx index bc70cc9d94d..166a865dea5 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_9.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_rhel_9.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_12.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_12.mdx index 6b81f0c92fb..dc0730e8ca7 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_12.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_12.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,13 +46,13 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_15.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_15.mdx index a1a8e5d47c4..84b683ec804 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_15.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_sles_15.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,7 +46,7 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -57,7 +57,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_18.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_18.mdx index 23f710a0f30..b54bcaba898 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_18.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_18.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_20.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_20.mdx index c483d47fc3a..8a8bdb2bd65 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_20.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_20.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_22.mdx b/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_22.mdx index ae21bff5cb5..78b6c571be3 100644 --- a/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_22.mdx +++ b/product_docs/docs/pem/8/installing/linux_x86_64/pem_ubuntu_22.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/index.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/index.mdx index 0a6f75b809f..2313da49884 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/index.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - pem_agent_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx index a742fbf9db1..e475f2f47d6 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx index e8d435dd9db..5a988064b97 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx index 189cef564c6..632c67284f2 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,13 +37,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx index dbba9633dc1..9e8fece35f6 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,7 +37,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -48,7 +48,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/index.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/index.mdx index 1822e0392f5..18497e53840 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/index.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - pem_agent_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx index 90b8bec3364..ec3c8491a03 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx index a7b6557a898..15902e44c80 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx index 13270e3f015..c33c4cdf04d 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx index 36b04e32199..2df888213d2 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx index 84e26fabf1d..48bd22ae79b 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx index 04e7e6336e7..c99732ff0af 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx index 4ef3e776bfa..6bb46f3d22b 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx index 0f25c0f42c4..130352e8caa 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx index abd9add71fa..62683383dcc 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,13 +37,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx index 8f333e4d07b..bf90992be44 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,7 +37,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -48,7 +48,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx index 5addcd7ce8d..3396cd17a52 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx index 8c6893192ae..d84a434fab3 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx index 9dea90e3501..7333eabca30 100644 --- a/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx +++ b/product_docs/docs/pem/8/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/index.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/index.mdx index f3c72b4de3d..9f844d72be3 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/index.mdx @@ -17,7 +17,7 @@ navigation: - pem_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx index 5bb7291718e..b4085dddb46 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_8.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_9.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_9.mdx index b703600ed07..9f804f241f1 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_9.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_rhel_9.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx index be0456cfbdb..a3c750413d7 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_12.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,13 +46,13 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx index 42298c5aa22..bdc2ae521ed 100644 --- a/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx +++ b/product_docs/docs/pem/9/installing/linux_ppc64le/pem_sles_15.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,7 +46,7 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -57,7 +57,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/index.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/index.mdx index b775a7a673b..484c53b6497 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/index.mdx @@ -26,7 +26,7 @@ navigation: - pem_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx index 7a9dbc8084a..e5adf907b55 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_centos_7.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx index 6d503840d49..d9fb512340c 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_10.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx index cd181e97167..cb8034c98d4 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_debian_11.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx index 0f858ebf69a..d0d1d27da0f 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_8.mdx @@ -18,7 +18,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_9.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_9.mdx index 0c84be7ed56..7bf9b704295 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_9.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_other_linux_9.mdx @@ -18,7 +18,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx index ce5050e7473..d667314d9ff 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_7.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx index c17e2a189dd..9bc79f25be6 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_8.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_9.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_9.mdx index 0c48e0fe3ad..34c4442af4c 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_9.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_rhel_9.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx index bfeb88058ac..fd002ff92f5 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_12.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,13 +46,13 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx index dd7a7a09612..0d19fd43e3a 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_sles_15.mdx @@ -21,7 +21,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: @@ -46,7 +46,7 @@ Before you begin the installation process: - Review [configuration and authentication requirements](../prerequisites/) for PEM. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -57,7 +57,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx index 50b2cca834b..d22bcc5136c 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_18.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx index 94f4d591b49..89a6e7c6c69 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_20.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_22.mdx b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_22.mdx index 58f86de0312..46ae2a6a3e8 100644 --- a/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_22.mdx +++ b/product_docs/docs/pem/9/installing/linux_x86_64/pem_ubuntu_22.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set 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 this step. To determine if your repository exists, enter this command: diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/index.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/index.mdx index c23d57bd3f2..31974f8eb70 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/index.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - pem_agent_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx index 34e8c6a3bc6..a58c945b1a3 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx index d3220a4ae01..a51f4a317ba 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx index 5b6cfa71cd8..7f14539c8cb 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,13 +37,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx index fca9b9b1bed..fc83c706c70 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_ppc64le/pem_agent_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,7 +37,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -48,7 +48,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/index.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/index.mdx index 6794e8fe5e8..261be996af1 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/index.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/index.mdx @@ -25,7 +25,7 @@ navigation: - pem_agent_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx index 3d2f047b728..5baa5a066e4 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_centos_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx index 88ea9cc132c..36576d76200 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_10.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx index a5fe53bf126..0b25f6f3f5a 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_debian_11.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx index 221493418d5..38d5ef4018b 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_8.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx index 40fce90e6a2..0635f114f55 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_other_linux_9.mdx @@ -14,7 +14,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx index 346e52d1809..d0eb676f56b 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_7.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx index b576d1c6593..dd16f9219b7 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_8.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx index 9669e36a686..be6882b65e8 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_rhel_9.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx index 4bae14d9b30..6d3e2a11934 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_12.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,13 +37,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx index 39dc81df22d..83dc1326122 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_sles_15.mdx @@ -17,7 +17,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -37,7 +37,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell # You can use SLES 15 SP3 for PEM 8.3 and later: @@ -48,7 +48,7 @@ Before you begin the installation process: ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx index 4905c1add73..85f8ee81632 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_18.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx index f9b4d196b42..f247f8221a3 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_20.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx index 45164d7c91b..1960134d0cf 100644 --- a/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx +++ b/product_docs/docs/pem/9/installing_pem_agent/linux_x86_64/pem_agent_ubuntu_22.mdx @@ -13,7 +13,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/index.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/index.mdx index b373a0885ee..db8e2247429 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/index.mdx @@ -18,7 +18,7 @@ navigation: - pgbouncer_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx index f5a9b3381b5..ef19ee0a010 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx index 2cc997e8224..a039730cecf 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx index 3dd802684ac..1871947ca24 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx index 413a5d3e0b2..9fba63a1e5c 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_ppc64le/pgbouncer_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/index.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/index.mdx index 8e7f7cbd9f6..29b04c8946f 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/index.mdx @@ -27,7 +27,7 @@ navigation: - pgbouncer_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_centos_7.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_centos_7.mdx index e0f96e36003..fb2d3426827 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_centos_7.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_10.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_10.mdx index a47083850e4..3eb41a9e452 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_10.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx index 772872c195d..563f72bfcd2 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx index ab517586f63..a9be3d6389b 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx index 394ce1b8825..d8ffe024929 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_7.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_7.mdx index 849a32c9176..837d43942d4 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_7.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx index 5b0672115df..440014b30ec 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx index dd9da039b93..73ef555be4b 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx index 1a391ebfcda..9c47eebf24d 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx index 21bd3c97d2b..10e732d00d4 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_18.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_18.mdx index 7b5c43a712a..ce2eba28cb6 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_18.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx index d9be77de9e5..a1a688dd59f 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx index c080c34c4ec..7d880f99801 100644 --- a/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx +++ b/product_docs/docs/pgbouncer/1/installing/linux_x86_64/pgbouncer_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/index.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/index.mdx index 85916f6a91b..ca192acc278 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/index.mdx @@ -18,7 +18,7 @@ navigation: - pge_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_centos_7.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_centos_7.mdx index ac2c270bb0b..3c46ca81aae 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_centos_7.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_centos_7.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -32,7 +32,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_10.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_10.mdx index 20efb57d10e..33db78f6702 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_10.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_10.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx index 25c34925642..c557e2d2b02 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_debian_11.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx index 73403cc3df0..ccd0fc2dd4d 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_8.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -32,13 +32,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx index 117317d66f7..9dde370c886 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_other_linux_9.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -32,13 +32,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_7.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_7.mdx index 1f2176f55c4..72b8a36b467 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_7.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_7.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -32,13 +32,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx index 6b38cd32477..04a9ee7570e 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_8.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -32,7 +32,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx index 3049a7ff9ce..ab4f396ec87 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_rhel_9.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -32,7 +32,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_18.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_18.mdx index c416d16ea20..d82b4dc55bc 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_18.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_18.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx index 40c7ae7e57b..1de88ccf30a 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_20.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx index 6e6f87afcdc..b09984f5fee 100644 --- a/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx +++ b/product_docs/docs/pge/15/installing/linux_x86_64/pge_ubuntu_22.mdx @@ -12,7 +12,7 @@ redirects: Before you begin the installation process: -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/index.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/index.mdx index 4ec4e24895d..864faa4347b 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/index.mdx @@ -17,7 +17,7 @@ navigation: - pgpool_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx index 5bb6d6e4ad5..699b85b7368 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx index 9690e60fdfe..bcf128882b1 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx index 6eba1e057dc..63774023c1d 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx index 73a027047db..143a26998e7 100644 --- a/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_ppc64le/pgpool_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/index.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/index.mdx index bf1bab46121..d37a8c41caa 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/index.mdx @@ -30,7 +30,7 @@ navigation: - pgpool_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_centos_7.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_centos_7.mdx index ec8638c6960..1c2d61281d7 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_centos_7.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_10.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_10.mdx index 1f96a3f68e0..48819468e31 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_10.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx index 3c8acf3a2ea..f0659dbedb0 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx index ebeb788de27..5c3a849f5e6 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx index 9accfdf0fb3..6668acf83a0 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_7.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_7.mdx index b5dea08ff21..dc6e3a147c4 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_7.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx index f9ff9cfe157..c50633ff389 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx index 9578431eb5b..ad13c4c899b 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx index 059e7d106cb..286316adc94 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx index 1762d657ff3..25b41fac7d2 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_18.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_18.mdx index ee825dd2409..1a84baf94f7 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_18.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx index 2181efa846f..89260672d49 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx index 2cd84d90a24..e999ccefa92 100644 --- a/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx +++ b/product_docs/docs/pgpool/4/installing/linux_x86_64/pgpool_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/index.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/index.mdx index b3748796de1..b4083bf8847 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/index.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/index.mdx @@ -16,7 +16,7 @@ navigation: - pgpoolext_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx index 9916629e278..2d81be62d67 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx index e4c56fc3e64..febf2a25044 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx index f98386ffb24..00254563c07 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx index 3de0ae0b2a2..fbfbf525e55 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_ppc64le/pgpoolext_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/index.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/index.mdx index 0f33b10307f..87e76234a57 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/index.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/index.mdx @@ -29,7 +29,7 @@ navigation: - pgpoolext_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx index 73baa442b6c..0e081fff04c 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx index c81bef23bbc..c4b670dc412 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx index 8d3beae7b24..1c4268ac7c6 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx index 694ea0a18fa..e08162ccc53 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx index c1ea6dd143d..5910325590a 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx index e659ce2c756..3ae0c8fe86a 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx index 8fd799b61de..57d253f3bd4 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx index 92308768c4e..655e89597dc 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx index b14d9b73b81..a22d9b0b1dd 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx index 617c723e75f..77cc5cd0032 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx index 3363ecee3ff..a612243e8d9 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx index 25574e1f5f8..3eabd4854b3 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx index 93cc534a0d5..39e7b071009 100644 --- a/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx +++ b/product_docs/docs/pgpool/4/installing_extensions/linux_x86_64/pgpoolext_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/index.mdx b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/index.mdx index 8a34d49dafe..516fff796f0 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/index.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/index.mdx @@ -17,7 +17,7 @@ navigation: - postgis_sles_12 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) diff --git a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_8.mdx b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_8.mdx index f64c56cddf1..ad1ea0c0ab1 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_8.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_9.mdx b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_9.mdx index 5ed3ec74e3a..f238b987e4d 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_9.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,11 +39,11 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm ``` -- Refresh the cache +- Refresh the cache: ```shell sudo dnf makecache ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_12.mdx b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_12.mdx index 8c535401266..6578b84112d 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_12.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/ppc64le sudo SUSEConnect -p sle-sdk/12.5/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_15.mdx b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_15.mdx index b03a8b9edd1..13187523eed 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_15.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_ppc64le/postgis_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/ppc64le ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/index.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/index.mdx index 926e41545e7..4c9479ce89a 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/index.mdx @@ -26,7 +26,7 @@ navigation: - postgis_debian_10 --- -For operating system-specific install instructions, including accessing the repo, see: +Operating system-specific install instructions are described in the corresponding documentation: ### Red Hat Enterprise Linux (RHEL) and derivatives diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_centos_7.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_centos_7.mdx index d086bb910a3..91a3637feca 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_centos_7.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_centos_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_10.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_10.mdx index 1a1d70f84bc..935a5bfb84a 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_10.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_10.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_11.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_11.mdx index 4852af27de8..6fbf8c353df 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_11.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_debian_11.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_8.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_8.mdx index fca371fdc86..041a7ba6256 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_8.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_9.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_9.mdx index bdf91acc6ff..cc6b075a45b 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_9.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_other_linux_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install epel-release ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell sudo dnf config-manager --set-enabled powertools ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_7.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_7.mdx index 4de11e745e7..79ea1c8355a 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_7.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_7.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm ``` -- Enable additional repositories to resolve dependencies +- Enable additional repositories to resolve dependencies: ```shell subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms" ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_8.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_8.mdx index 38a9d4c5166..093705cdb54 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_8.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_8.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_9.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_9.mdx index 2eece456b32..35ab9925953 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_9.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_rhel_9.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,7 +39,7 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Install the EPEL repository +- Install the EPEL repository: ```shell sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_12.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_12.mdx index 7d40d420062..6ec0ba7af04 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_12.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_12.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,13 +39,13 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/12.5/x86_64 sudo SUSEConnect -p sle-sdk/12.5/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_15.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_15.mdx index 24809549f78..426c305bbe3 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_15.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_sles_15.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. @@ -39,14 +39,14 @@ Before you begin the installation process: 1. Follow the instructions for setting up the EDB repository. -- Activate the required SUSE module +- Activate the required SUSE module: ```shell sudo SUSEConnect -p PackageHub/15.4/x86_64 ``` -- Refresh the metadata +- Refresh the metadata: ```shell sudo zypper refresh ``` diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_18.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_18.mdx index 3ea639c62dd..fdc933d7ec7 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_18.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_18.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_20.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_20.mdx index 3187c39b2f7..50cb99d141d 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_20.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_20.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. diff --git a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_22.mdx b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_22.mdx index ec10c354c0f..563b2d648f9 100644 --- a/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_22.mdx +++ b/product_docs/docs/postgis/3.2/installing/linux_x86_64/postgis_ubuntu_22.mdx @@ -19,7 +19,7 @@ Before you begin the installation process: - [Installing PostgreSQL](https://www.postgresql.org/download/) -- Set up the EDB repository +- Set up the EDB repository. Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. From 3e240e0f93073f57f0482561e7c9800fb66be253 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Tue, 12 Sep 2023 08:47:00 -0400 Subject: [PATCH 7/8] small grammatical fix suggested by Dee Dee --- .../templates/products/edb-postgres-advanced-server/base.njk | 2 +- 1 file changed, 1 insertion(+), 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 8ad6b911bc4..0fac8cc0f49 100644 --- a/install_template/templates/products/edb-postgres-advanced-server/base.njk +++ b/install_template/templates/products/edb-postgres-advanced-server/base.njk @@ -63,7 +63,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql From 419cb4c6a6305bae40c9f184be8cc0fd9694ca75 Mon Sep 17 00:00:00 2001 From: David Wicinas <93669463+dwicinas@users.noreply.github.com> Date: Wed, 13 Sep 2023 08:05:13 -0400 Subject: [PATCH 8/8] Generated topics to reflect previous small fix --- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx | 2 +- .../docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx | 2 +- .../docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx | 2 +- 90 files changed, 90 insertions(+), 90 deletions(-) diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx index 0f1650d3b84..f3c81e67da6 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_7.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx index d0c738954f8..320f66e6edb 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_8.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx index 981eb3f1e3a..68c95e1937c 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_rhel_9.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx index 19f261fcbb0..d4d7c74948b 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx index cb969d9023e..c59e67c4ef5 100644 --- a/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_ppc64le/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx index 6b24871c75d..43cbf0c8840 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_centos_7.mdx @@ -89,7 +89,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx index 80d3286415c..f9bd9499c45 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_10.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx index 5397bd59bf2..3efe80cf1a1 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_debian_11.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx index 8c436b8a209..cfdadc746b7 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_8.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx index 8c7ffe76417..3d422acdf4c 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_other_linux_9.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx index 6c8e4fe7880..2199a0f64c4 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_7.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx index a6cc561cee4..bd31438b9cd 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_8.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx index 2495e08caaa..bdd51e49520 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_rhel_9.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx index 3772f7bef44..0dbde6d4d08 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx index a9415b05bfe..128f3523f54 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx index b7c487927f9..b6e0baa55ed 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx index 28c6b56ac1c..0cabc6bc7e1 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx index 5b44b3d75e4..421064a54ac 100644 --- a/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/11/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx index e03579fe03d..98861c13f90 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_7.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx index 3b8cac0238a..11acd2c4d6a 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_8.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx index 3e444c6600e..4f4af735e23 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_rhel_9.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx index 49bb168a9a7..a9341e767c0 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx index eed6caab5e2..f6ceff1c8cd 100644 --- a/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_ppc64le/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx index f966a66e147..4300e3286a6 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_centos_7.mdx @@ -89,7 +89,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx index 1f3aa2525f7..5b046520179 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_10.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx index c5d7441e94a..a096df277f4 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_debian_11.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx index 1ff3a9b112d..53e898b5da0 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_8.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx index 96d22b8a253..33324e71dc9 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_other_linux_9.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx index e25bb6a8524..57d3a8e03dc 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_7.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx index ba33cd2c9ff..c30de6b9678 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_8.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx index aef7056768e..4a84ae0f3ad 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_rhel_9.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx index 077cb05acac..b11ea74e6ae 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx index 280a85650f7..ed9b5124827 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx index 77881730bbc..0193b0325cc 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx index 0b27809f1fb..19495c144be 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx index 36d1122c85a..da3bd5aead2 100644 --- a/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/12/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx index 64bdd9b77c1..e8fb1e11703 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_7.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx index f25af0f0846..37d633baf35 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_8.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx index 119b3d88ef0..9ed058b9979 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_rhel_9.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx index 96ca0c457d7..b6c6321ffa7 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx index e7acb2a4258..a8fac4a76b1 100644 --- a/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_ppc64le/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx index db6d66a71e5..b4e35210a92 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_centos_7.mdx @@ -89,7 +89,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx index fa47bb6ff8f..1e51f600936 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_10.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx index e415c5f52b6..c42ed5d99f0 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_debian_11.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx index 02794a41518..e5fc70a5cf1 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_8.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx index 7108a5586f4..d81cfdab1a4 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_other_linux_9.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx index 4ab029088f3..926daee985b 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_7.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx index 0189a243189..d2941c93f24 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_8.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx index 59b97ab087b..493009b5d9b 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_rhel_9.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx index 74fcad35575..f1f12dabccb 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx index a29eee83c7e..0efb306011c 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx index 6f9e612e9e6..e807b553b1a 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx index b0f4bfca8cb..1531420a07e 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx index 968895d87ce..2ff62b84b1f 100644 --- a/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/13/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx index 13d4ef480e4..81aa547de5f 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_7.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx index d025a5dab43..0a51e198781 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_8.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx index 781bb2e4ae4..9a5cdb485fe 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_rhel_9.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx index 8daed5b3501..578ab5b7013 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx index cd288bd90d6..12792bf0b96 100644 --- a/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_ppc64le/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx index f33bb5f6b65..49104e367f6 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_centos_7.mdx @@ -89,7 +89,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx index 45b9850f7e9..0b4fb2b1905 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_10.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx index eedcb491035..9b53aca0e81 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_debian_11.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx index 1f54101862b..d4e98a355c1 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_8.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx index a3d044fc3f9..899cdf9bb40 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_other_linux_9.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx index 2fce9ff259c..f5bb61703ba 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_7.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx index 34bcbbcd079..eb30af9dc9e 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_8.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx index 7d649c63989..f13b24ca42c 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_rhel_9.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx index c26981bc742..f4791a102d5 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx index fa8dcd09882..d546c497946 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx index 8cb23e779b5..e6febda0c0e 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx index c3b5610a881..8c389eadfde 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx index fc8a080eb83..e35fb895771 100644 --- a/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/14/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx index 19194f58557..469cbcc1fa3 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_7.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx index 7f0cc553b0c..651693bfe04 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_8.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx index 91ac028db29..9ef92e3577b 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_rhel_9.mdx @@ -99,7 +99,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx index 570eb32a30d..5b90f2c6645 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx index 6a3607220ea..50d5ac741b3 100644 --- a/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_ppc64le/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx index 210a69b0e92..835c8177c10 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_centos_7.mdx @@ -89,7 +89,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx index ee48367ff64..5d106336f76 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_10.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx index ccdf025428c..c949411deee 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_debian_11.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx index 40ec76dc564..428445be69b 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_8.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx index 69d9c1914e0..3a780aa726c 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_other_linux_9.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx index c50447914cb..c79d91cde15 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_7.mdx @@ -95,7 +95,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx index 333b703978b..eb612d7c1e9 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_8.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx index 362a2a2e802..39685242f11 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_rhel_9.mdx @@ -97,7 +97,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx index a39e1f8adbc..aa8e0f452cf 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_12.mdx @@ -93,7 +93,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx index 968fb55cc51..744ea5bac3f 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_sles_15.mdx @@ -94,7 +94,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx index f5b90bb7a53..bfc54931ef6 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_18.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx index aa941c6da61..69e824824b8 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_20.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql diff --git a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx index fcb4ee9e023..10d25a61090 100644 --- a/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx +++ b/product_docs/docs/epas/15/installing/linux_x86_64/epas_ubuntu_22.mdx @@ -74,7 +74,7 @@ ALTER ROLE enterprisedb IDENTIFIED BY password; Now you're ready to create and connect to a database, create a table, insert data in a table, and view the data from the table. -First, use psql create a database named `hr` to hold human resource information. +First, use psql to create a database named `hr` to hold human resource information. ```sql # running in psql