From 9fe95df3a0cefc8b0ad26ff4c5145cf19a0cc83f Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Wed, 27 Nov 2024 15:14:02 +0530 Subject: [PATCH] EPAS and PGE 17 - Remove Ubuntu 20 install topics --- install_template/config.yaml | 2 +- .../docs/epas/17/installing/index.mdx | 2 +- .../linux_x86_64/epas_ubuntu_20.mdx | 129 ------------------ .../epas/17/installing/linux_x86_64/index.mdx | 3 - 4 files changed, 2 insertions(+), 134 deletions(-) delete mode 100644 product_docs/docs/epas/17/installing/linux_x86_64/epas_ubuntu_20.mdx diff --git a/install_template/config.yaml b/install_template/config.yaml index 0485e53a8a4..46e22cc53d8 100644 --- a/install_template/config.yaml +++ b/install_template/config.yaml @@ -373,7 +373,7 @@ products: supported versions: [11, 12, 13, 14, 15, 16, 17] - name: Ubuntu 20.04 arch: x86_64 - supported versions: [11, 12, 13, 14, 15, 16, 17] + supported versions: [11, 12, 13, 14, 15, 16] - name: SLES 15 arch: x86_64 supported versions: [11, 12, 13, 14, 15, 16, 17] diff --git a/product_docs/docs/epas/17/installing/index.mdx b/product_docs/docs/epas/17/installing/index.mdx index f98853d0098..2c7f3d5f4a4 100644 --- a/product_docs/docs/epas/17/installing/index.mdx +++ b/product_docs/docs/epas/17/installing/index.mdx @@ -41,7 +41,7 @@ Select a link to access the applicable installation instructions: ### Debian and derivatives -- [Ubuntu 22.04](linux_x86_64/epas_ubuntu_22), [Ubuntu 20.04](linux_x86_64/epas_ubuntu_20) +- [Ubuntu 22.04](linux_x86_64/epas_ubuntu_22) - [Debian 12](linux_x86_64/epas_debian_12), [Debian 11](linux_x86_64/epas_debian_11) diff --git a/product_docs/docs/epas/17/installing/linux_x86_64/epas_ubuntu_20.mdx b/product_docs/docs/epas/17/installing/linux_x86_64/epas_ubuntu_20.mdx deleted file mode 100644 index 2b721211e32..00000000000 --- a/product_docs/docs/epas/17/installing/linux_x86_64/epas_ubuntu_20.mdx +++ /dev/null @@ -1,129 +0,0 @@ ---- -navTitle: Ubuntu 20.04 -title: Installing EDB Postgres Advanced Server on Ubuntu 20.04 x86_64 -# This topic is generated from templates. If you have feedback on it, instead of -# editing the page and creating a pull request, please enter a GitHub issue and -# the documentation team will update the templates accordingly. - -redirects: - - /epas/17/epas_inst_linux/installing_epas_using_edb_repository/x86_amd64/epas_ubuntu20_x86 - - /epas/17/epas_inst_linux/installing_epas_using_edb_repository/x86/epas_ubuntu20_x86 ---- - -## Prerequisites - -Before you begin the installation process: - -- Set up the EDB repository. - - Setting up the repository is a one-time task. If you have already set up your repository, you don't need to perform this step. - - To determine if your repository exists, enter this command: - - `apt-cache search enterprisedb` - - If no output is generated, the repository isn't installed. - - To set up the EDB repository: - - 1. Go to [EDB repositories](https://www.enterprisedb.com/repos-downloads). - - 1. Select the button that provides access to the EDB repository. - - 1. Select the platform and software that you want to download. - - 1. Follow the instructions for setting up the EDB repository. - -## Install the package - -```shell -sudo apt-get -y install edb-as-server -``` - -Where `` is the version of the EDB Postgres Advanced Server you're installing. For example, if you're installing version 17, the package name is `edb-as17-server`. - -To install an individual component: - -```shell -sudo apt-get -y install -``` - -Where `package_name` can be any of the available packages from the [available package list](/epas/17/installing/linux_install_details/rpm_packages/). - -## Initial configuration - -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, 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 - -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). - -```sql -ALTER ROLE enterprisedb IDENTIFIED BY password; -``` - -## Experiment - -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 to create a database named `hr` to hold human resource information. - -```sql -# running in psql -CREATE DATABASE hr; -__OUTPUT__ -CREATE DATABASE -``` - -Connect to the `hr` database inside psql: - -``` -\c hr -__OUTPUT__ -psql (17.0.0, server 17.0.0) -You are now connected to database "hr" as user "enterprisedb". -``` - -Create columns to hold department numbers, unique department names, and locations: - -``` -CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk -PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc -varchar(13)); -__OUTPUT__ -CREATE TABLE -``` - -Insert values into the `dept` table: - -``` -INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); -__OUTPUT__ -INSERT 0 1 -``` - -``` -INSERT into dept VALUES (20,'RESEARCH','DALLAS'); -__OUTPUT__ -INSERT 0 1 -``` - -View the table data by selecting the values from the table: - -``` -SELECT * FROM dept; -__OUTPUT__ -deptno | dname | loc ---------+------------+---------- -10 | ACCOUNTING | NEW YORK -20 | RESEARCH | DALLAS -(2 rows) -``` diff --git a/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx b/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx index f0b99b5fe2b..d56b8114664 100644 --- a/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx +++ b/product_docs/docs/epas/17/installing/linux_x86_64/index.mdx @@ -18,7 +18,6 @@ navigation: - epas_other_linux_8 - epas_sles_15 - epas_ubuntu_22 - - epas_ubuntu_20 - epas_debian_12 - epas_debian_11 --- @@ -51,8 +50,6 @@ Operating system-specific install instructions are described in the correspondin - [Ubuntu 22.04](epas_ubuntu_22) -- [Ubuntu 20.04](epas_ubuntu_20) - - [Debian 12](epas_debian_12) - [Debian 11](epas_debian_11)