From 0d578ed79ba2e2488af6e06f4f746f4ce92bf2fb Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Tue, 4 Apr 2023 14:14:21 +0530 Subject: [PATCH 01/15] EPAS 15 - AWS_EPAS_AMI doc --- .../planning/deployment_options/aws_epas.mdx | 22 +++++++++++++++++++ .../15/planning/deployment_options/index.mdx | 6 ++++- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx new file mode 100644 index 00000000000..b9d57dc69c7 --- /dev/null +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -0,0 +1,22 @@ +--- +title: "EDB Postgres Advanced Server instance on AWS" +--- + +EDB Postgres Advanced Server (EPAS) instance is launched on AWS using Amazon Machine Images (AMI). + +Steps to launch EPAS instance: + +1. Log into your AWS account. + +1. On the AWS home page navigate to EC2. + +1. On the left-hand side, under "Images" select "AMIs". + +1. Once you are on the AMI page, you can filter the selection to find the "EDB AMI" quickly. + +1. In the first drop-down box that says “Owned by me, Privates Images or Public Images” select "Private Images". + +1. In the “Find AMI by attribute or tag” box select "AMI Name" and then select the "Contains" option and type “EPAS” and the "EDB AMI" will appear in the search results. + +1. You can see the details of the AMI and launch an EPAS instance using the AMI. + diff --git a/product_docs/docs/epas/15/planning/deployment_options/index.mdx b/product_docs/docs/epas/15/planning/deployment_options/index.mdx index e3bb3000c5f..9f2476c5fb6 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/index.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/index.mdx @@ -11,4 +11,8 @@ You can deploy and install EDB products using the following methods: - [EDB PostgreSQL for Kubernetes](/postgres_for_kubernetes/latest/) is an operator designed by EnterpriseDB to manage PostgreSQL workloads on any supported Kubernetes cluster running in private, public, hybrid, or multi-cloud environments. EDB PostgreSQL for Kubernetes adheres to DevOps principles and concepts such as declarative configuration and immutable infrastructure. -- [Installation using native packages or installers](../../installing) \ No newline at end of file +- [EDB Postgres Advanced Server instance on AWS](aws_epas) is launched using an Amazon Machine Images(AMI). + +- Installation using native packages or installers: + + - [Installing EDB Postgres Advanced Server](/epas/latest/installing) From 62737e0b94e8e54b7ffb6213b7c3527f38ea9a6f Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Wed, 5 Apr 2023 17:34:50 +0530 Subject: [PATCH 02/15] Added steps to launch EPAS instance and deployment --- .../planning/deployment_options/aws_epas.mdx | 91 +++++++++++++++++-- .../15/planning/deployment_options/index.mdx | 2 +- 2 files changed, 85 insertions(+), 8 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index b9d57dc69c7..136542363c7 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -2,21 +2,98 @@ title: "EDB Postgres Advanced Server instance on AWS" --- -EDB Postgres Advanced Server (EPAS) instance is launched on AWS using Amazon Machine Images (AMI). +Launch EDB Postgres Advanced Server(EPAS) instance on AWS using Amazon Machine Images(AMI). Steps to launch EPAS instance: 1. Log into your AWS account. -1. On the AWS home page navigate to EC2. +1. On the AWS home page navigate to "EC2". -1. On the left-hand side, under "Images" select "AMIs". +1. On the EC2 Dashboard, click on "Launch instance". -1. Once you are on the AMI page, you can filter the selection to find the "EDB AMI" quickly. +1. On the "Launch an instance" page provide the details: -1. In the first drop-down box that says “Owned by me, Privates Images or Public Images” select "Private Images". + - **Name and tags** — Provide name of the server, for example EDB test server. -1. In the “Find AMI by attribute or tag” box select "AMI Name" and then select the "Contains" option and type “EPAS” and the "EDB AMI" will appear in the search results. + - **Application and OS Images (Amazon Machine Image)** — Select the EDB AMI to launch EPAS instance. + + - **Instance type** — Select the instance type from available variety of instance types with different compute, memory, storage, and network capabilities as per your requirement. + + - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, give a Key pair name, select a Key pair type and Private key file format. Download the new key pair and move it to the place where you can access it. You need a key pair to securely connect to your instance. + + - **Network settings** — For Firewall, select either "Create security group" or "Select existing security group". + + - **Configure storage** — Allocate the amount of storage required for your instance. + + - **Advanced details** — + + After providing all the details, review the instance details in the 'Summary' section on the right side and click on "Launch instance" + + +## Viewing instances + +To view all the instances, select the "Instances" in the navigation pane on the EC2 home page. + +## Accessing the EPAS instance + +1. Open a terminal window. + +1. Navigate to the directory holding your key pair. + +1. Connect to your instance using the key pair: + + ```shell + ssh -i your_key_pair ec2-user@instance_ip_address + ``` + + At this point, you are connected to the AWS EC2 instance where EDB Postgres Advanced Server is installed. + +1. 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. + + ```shell + # Initialize the database cluster + PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb + + # Start the database cluster + systemctl start edb-as-15 + + # To work in your cluster, login as the enterprisedb user + su - enterprisedb + + # Connect to the database server using the psql command line client + psql edb + + # Assign a password to the database superuser the enterprisedb + ALTER ROLE enterprisedb IDENTIFIED BY password; + + # Create a database (named hr) + CREATE DATABASE hr; + + # Connect to the new database and create a table (named dept) + \c hr + CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk + PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc + varchar(13)); + + # Add data to the table + INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); + INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + + # You can use simple SQL commands to query the database and retrieve + # information about the data you have added to the table + SELECT * FROM dept; + __OUTPUT__ + deptno | dname | loc + --------+------------+---------- + 10 | ACCOUNTING | NEW YORK + 20 | RESEARCH | DALLAS + (2 rows) + ``` + + + -1. You can see the details of the AMI and launch an EPAS instance using the AMI. diff --git a/product_docs/docs/epas/15/planning/deployment_options/index.mdx b/product_docs/docs/epas/15/planning/deployment_options/index.mdx index 9f2476c5fb6..40f37080f41 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/index.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/index.mdx @@ -11,7 +11,7 @@ You can deploy and install EDB products using the following methods: - [EDB PostgreSQL for Kubernetes](/postgres_for_kubernetes/latest/) is an operator designed by EnterpriseDB to manage PostgreSQL workloads on any supported Kubernetes cluster running in private, public, hybrid, or multi-cloud environments. EDB PostgreSQL for Kubernetes adheres to DevOps principles and concepts such as declarative configuration and immutable infrastructure. -- [EDB Postgres Advanced Server instance on AWS](aws_epas) is launched using an Amazon Machine Images(AMI). +- [EDB Postgres Advanced Server instance on Amazon marketplace](aws_epas) is launched using an Amazon Machine Images(AMI). - Installation using native packages or installers: From dec2215987b60990a4c27fc0424f4b7b34cb6f29 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Wed, 5 Apr 2023 15:24:47 -0400 Subject: [PATCH 03/15] Dee Dee's edits - may not be technically accurate --- .../planning/deployment_options/aws_epas.mdx | 46 +++++++++++-------- .../15/planning/deployment_options/index.mdx | 4 +- 2 files changed, 29 insertions(+), 21 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 136542363c7..b53ae6aed37 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -1,45 +1,53 @@ --- -title: "EDB Postgres Advanced Server instance on AWS" +title: "EDB Postgres Advanced Server Amazon Machine Image (EDB AMI)" +navTitle: EDB AMI --- -Launch EDB Postgres Advanced Server(EPAS) instance on AWS using Amazon Machine Images(AMI). +You can purchase EDB Postgres Advanced Server Amazon Machine Image (EDB AMI) from Amazon Marketplace. -Steps to launch EPAS instance: +With EDB AMI, you can: +- Create an EDB Postgres Advanced Server instance on AWS +- Connect to the instance +- Create and use an EDB Postgres Advanced Server cluster + +## Creating an instance + +To create an EDB Postgres Advanced Server (EPAS) image on AWS: 1. Log into your AWS account. -1. On the AWS home page navigate to "EC2". +1. On the AWS home page navigate to **EC2**. -1. On the EC2 Dashboard, click on "Launch instance". +1. On the EC2 Dashboard, select **Launch instance**. -1. On the "Launch an instance" page provide the details: +1. On the **Launch an instance** page, specify the following: - - **Name and tags** — Provide name of the server, for example EDB test server. + - **Name and tags** — Provide the name of the server; for example, *EDB test server*. - - **Application and OS Images (Amazon Machine Image)** — Select the EDB AMI to launch EPAS instance. + - **Application and OS Images (Amazon Machine Image)** — Select *EDB AMI* to launch the EDB Postgres Advanced Server instance. - - **Instance type** — Select the instance type from available variety of instance types with different compute, memory, storage, and network capabilities as per your requirement. + - **Instance type** — Select the instance type with the compute, memory, storage, and network capabilities you require. - - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, give a Key pair name, select a Key pair type and Private key file format. Download the new key pair and move it to the place where you can access it. You need a key pair to securely connect to your instance. + - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, enter a key pair name, select a key pair type, and select a private key file format. Download the new key pair and move it to a location where you can access it. You need a key pair to securely connect to your instance. - - **Network settings** — For Firewall, select either "Create security group" or "Select existing security group". + - **Network settings** — For **Firewall**, select either *Create security group* or *Select existing security group*. - - **Configure storage** — Allocate the amount of storage required for your instance. + - **Configure storage** — Allocate the amount of storage you need for your instance. - **Advanced details** — - After providing all the details, review the instance details in the 'Summary' section on the right side and click on "Launch instance" + Review the instance details in the **Summary** section on the right panel, and select **Launch instance**. ## Viewing instances -To view all the instances, select the "Instances" in the navigation pane on the EC2 home page. +To view all the instances, select **Instances** in the navigation pane on the EC2 home page. -## Accessing the EPAS instance +## Connecting to an instance 1. Open a terminal window. -1. Navigate to the directory holding your key pair. +1. Navigate to the directory containing your key pair. 1. Connect to your instance using the key pair: @@ -47,11 +55,11 @@ To view all the instances, select the "Instances" in the navigation pane on the ssh -i your_key_pair ec2-user@instance_ip_address ``` - At this point, you are connected to the AWS EC2 instance where EDB Postgres Advanced Server is installed. +You are now connected to the AWS EC2 instance where EDB Postgres Advanced Server is installed. -1. Initial configuration +## Getting started with a cluster - This section steps you through getting started with your cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +This example steps you through getting started with a EDB Postgres Advanced Server cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. ```shell # Initialize the database cluster diff --git a/product_docs/docs/epas/15/planning/deployment_options/index.mdx b/product_docs/docs/epas/15/planning/deployment_options/index.mdx index 40f37080f41..6137b9e5b75 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/index.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/index.mdx @@ -5,13 +5,13 @@ redirects: - /epas/latest/deployment_options/ --- -You can deploy and install EDB products using the following methods: +You can deploy and install EDB Postgres Advanced Server using the following methods: - [BigAnimal](/biganimal/latest) is a fully managed database-as-a-service with built-in Oracle compatibility, running in your cloud account and operated by the Postgres experts. BigAnimal makes it easy to set up, manage, and scale your databases. Provision PostgreSQL or EDB Postgres Advanced Server with Oracle compatibility. - [EDB PostgreSQL for Kubernetes](/postgres_for_kubernetes/latest/) is an operator designed by EnterpriseDB to manage PostgreSQL workloads on any supported Kubernetes cluster running in private, public, hybrid, or multi-cloud environments. EDB PostgreSQL for Kubernetes adheres to DevOps principles and concepts such as declarative configuration and immutable infrastructure. -- [EDB Postgres Advanced Server instance on Amazon marketplace](aws_epas) is launched using an Amazon Machine Images(AMI). +- [EDB AMI](aws_epas) is an Amazon machine image containing EDB Postgres Advanced Server available from Amazon Marketplace. - Installation using native packages or installers: From 8c0c9433c31407edfd2fd5d55919a6e7ea46b1cf Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Thu, 6 Apr 2023 11:14:52 +0530 Subject: [PATCH 04/15] Some content added some content and minor edits done --- .../planning/deployment_options/aws_epas.mdx | 100 ++++++++++-------- 1 file changed, 55 insertions(+), 45 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index b53ae6aed37..2e66d8b5a54 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -8,11 +8,11 @@ You can purchase EDB Postgres Advanced Server Amazon Machine Image (EDB AMI) fro With EDB AMI, you can: - Create an EDB Postgres Advanced Server instance on AWS - Connect to the instance -- Create and use an EDB Postgres Advanced Server cluster +- Initialize and use an EDB Postgres Advanced Server cluster ## Creating an instance -To create an EDB Postgres Advanced Server (EPAS) image on AWS: +To create an EDB Postgres Advanced Server (EPAS) instance on AWS: 1. Log into your AWS account. @@ -34,14 +34,14 @@ To create an EDB Postgres Advanced Server (EPAS) image on AWS: - **Configure storage** — Allocate the amount of storage you need for your instance. - - **Advanced details** — + - **Advanced details** — Expand the section to view the fields and specify any additional parameters for the instance. Review the instance details in the **Summary** section on the right panel, and select **Launch instance**. ## Viewing instances -To view all the instances, select **Instances** in the navigation pane on the EC2 home page. +To view all the instances, select **Instances** in the navigation pane on the EC2 home page. Click on the **Instance Id** next to your instance name to view the complete details of your instance. ## Connecting to an instance @@ -49,59 +49,69 @@ To view all the instances, select **Instances** in the navigation pane on the EC 1. Navigate to the directory containing your key pair. +1. Change the permissions: + + ```shell + chmod 0600 your_key_pair + ``` + 1. Connect to your instance using the key pair: ```shell ssh -i your_key_pair ec2-user@instance_ip_address ``` -You are now connected to the AWS EC2 instance where EDB Postgres Advanced Server is installed. + You are now connected to the AWS EC2 instance where EDB Postgres Advanced Server is installed. ## Getting started with a cluster This example steps you through getting started with a EDB Postgres Advanced Server cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. - ```shell - # Initialize the database cluster - PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb - - # Start the database cluster - systemctl start edb-as-15 - - # To work in your cluster, login as the enterprisedb user - su - enterprisedb - - # Connect to the database server using the psql command line client - psql edb - - # Assign a password to the database superuser the enterprisedb - ALTER ROLE enterprisedb IDENTIFIED BY password; - - # Create a database (named hr) - CREATE DATABASE hr; - - # Connect to the new database and create a table (named dept) - \c hr - CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk - PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc - varchar(13)); - - # Add data to the table - INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); - INSERT into dept VALUES (20,'RESEARCH','DALLAS'); - - # You can use simple SQL commands to query the database and retrieve - # information about the data you have added to the table - SELECT * FROM dept; - __OUTPUT__ - deptno | dname | loc - --------+------------+---------- - 10 | ACCOUNTING | NEW YORK - 20 | RESEARCH | DALLAS - (2 rows) - ``` +```shell +# Initialize the database cluster +sudo PGSETUP_INITDB_OPTIONS="-E UTF-8" /usr/edb/as15/bin/edb-as-15-setup initdb + +# Start the database cluster +sudo systemctl start edb-as-15 + +# To work in your cluster, login as the enterprisedb user +sudo su - enterprisedb + +# Connect to the database server using the psql command line client +psql edb + +# Assign a password to the database superuser the enterprisedb +ALTER ROLE enterprisedb IDENTIFIED BY password; + +# Create a database (named hr) +CREATE DATABASE hr; + +# Connect to the new database and create a table (named dept) +\c hr +CREATE TABLE public.dept (deptno numeric(2) NOT NULL CONSTRAINT dept_pk +PRIMARY KEY, dname varchar(14) CONSTRAINT dept_dname_uq UNIQUE, loc +varchar(13)); + +# Add data to the table +INSERT INTO dept VALUES (10,'ACCOUNTING','NEW YORK'); +INSERT into dept VALUES (20,'RESEARCH','DALLAS'); + +# You can use simple SQL commands to query the database and retrieve +# information about the data you have added to the table +SELECT * FROM dept; +__OUTPUT__ +deptno | dname | loc +--------+------------+---------- +10 | ACCOUNTING | NEW YORK +20 | RESEARCH | DALLAS +(2 rows) +``` + +## Set up the repository + +If you need to upgrade EDB Postgres Advanced Server or install any EDB products you need to set up the EDB repository. Setting up the repository is a one-time task. +To set up the repository, go to [EDB repositories](https://www.enterprisedb.com/repos-downloads) and follow the instructions provided there. - From 0e013266e4e014969a4b02ee0fb4f4ede720c443 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Thu, 6 Apr 2023 15:54:49 +0530 Subject: [PATCH 05/15] Edits done as per discussion with Dee Dee --- .../epas/15/planning/deployment_options/aws_epas.mdx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 2e66d8b5a54..811ffee7f87 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -38,18 +38,17 @@ To create an EDB Postgres Advanced Server (EPAS) instance on AWS: Review the instance details in the **Summary** section on the right panel, and select **Launch instance**. - -## Viewing instances - -To view all the instances, select **Instances** in the navigation pane on the EC2 home page. Click on the **Instance Id** next to your instance name to view the complete details of your instance. + You can now view the instance and see the auto-assigned ip address by selecting **View all instances** pop-up at the bottom of the page. ## Connecting to an instance +You need the auto-assigned IP address to connect to your instance. To find the IP address select **Instances** in the navigation pane on the EC2 home page. Select the **Instance Id** next to your instance name to view the complete details of your instance including the IP address. + 1. Open a terminal window. 1. Navigate to the directory containing your key pair. -1. Change the permissions: +1. Change the permissions of the key pair: ```shell chmod 0600 your_key_pair @@ -109,7 +108,7 @@ deptno | dname | loc ## Set up the repository -If you need to upgrade EDB Postgres Advanced Server or install any EDB products you need to set up the EDB repository. Setting up the repository is a one-time task. +If you need to upgrade EDB Postgres Advanced Server or install any other EDB products you need to set up the EDB repository. Setting up the repository is a one-time task. To set up the repository, go to [EDB repositories](https://www.enterprisedb.com/repos-downloads) and follow the instructions provided there. From 1473bf83bdff64758a4a0a4d458a104cda61863c Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Mon, 10 Apr 2023 14:44:23 +0530 Subject: [PATCH 06/15] Edits done as per review comments in aws-epas-dev-group channel --- .../docs/epas/15/planning/deployment_options/aws_epas.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 811ffee7f87..49907ff5d76 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -6,7 +6,7 @@ navTitle: EDB AMI You can purchase EDB Postgres Advanced Server Amazon Machine Image (EDB AMI) from Amazon Marketplace. With EDB AMI, you can: -- Create an EDB Postgres Advanced Server instance on AWS +- Create an EDB Postgres Advanced Server 15 instance on AWS - Connect to the instance - Initialize and use an EDB Postgres Advanced Server cluster @@ -30,7 +30,7 @@ To create an EDB Postgres Advanced Server (EPAS) instance on AWS: - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, enter a key pair name, select a key pair type, and select a private key file format. Download the new key pair and move it to a location where you can access it. You need a key pair to securely connect to your instance. - - **Network settings** — For **Firewall**, select either *Create security group* or *Select existing security group*. + - **Network settings** — For **Firewall**, select either *Create security group* or *Select existing security group*. For more information, see [Network settings](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-networking.html). - **Configure storage** — Allocate the amount of storage you need for your instance. From 1b8507b73369e50c2aaa05ed6f6d4739391f8cb4 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Tue, 11 Apr 2023 11:13:12 +0530 Subject: [PATCH 07/15] Update product_docs/docs/epas/15/deployment_options/aws_epas.mdx Co-authored-by: Dee Dee Rothery <83650384+drothery-edb@users.noreply.github.com> --- .../docs/epas/15/planning/deployment_options/aws_epas.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 49907ff5d76..b93ca328cf4 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -30,7 +30,7 @@ To create an EDB Postgres Advanced Server (EPAS) instance on AWS: - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, enter a key pair name, select a key pair type, and select a private key file format. Download the new key pair and move it to a location where you can access it. You need a key pair to securely connect to your instance. - - **Network settings** — For **Firewall**, select either *Create security group* or *Select existing security group*. For more information, see [Network settings](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-networking.html). + - **Network settings** — For **Firewall**, select an existing security group or create a new security group. For more information, see [Network settings](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-networking.html). - **Configure storage** — Allocate the amount of storage you need for your instance. From df37c1858bc2d8294d72af885e26dad9ce159e57 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Thu, 27 Apr 2023 13:40:24 +0530 Subject: [PATCH 08/15] Added a sentence and edited existing content --- .../docs/epas/15/planning/deployment_options/aws_epas.mdx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index b93ca328cf4..338eba01657 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -5,6 +5,8 @@ navTitle: EDB AMI You can purchase EDB Postgres Advanced Server Amazon Machine Image (EDB AMI) from Amazon Marketplace. +EDB AMI is a pre-configured template with EDB Postgres Advanced Server installed on RHEL 8. + With EDB AMI, you can: - Create an EDB Postgres Advanced Server 15 instance on AWS - Connect to the instance @@ -24,9 +26,9 @@ To create an EDB Postgres Advanced Server (EPAS) instance on AWS: - **Name and tags** — Provide the name of the server; for example, *EDB test server*. - - **Application and OS Images (Amazon Machine Image)** — Select *EDB AMI* to launch the EDB Postgres Advanced Server instance. - - - **Instance type** — Select the instance type with the compute, memory, storage, and network capabilities you require. + - **Application and OS Images (Amazon Machine Image)** — Select the *My AMIs* tab. On the *My AMIs* tab, select *Owned by me* to choose the *EDB-AS-AWS-* image to launch the EDB Postgres Advanced Server instance, where `` is the EDB Postgres Advanced Server version, and `` is the AMI version. For example, if the EDB Postgres Advanced Server version is 15.2 and the AMI version is 2.0.1, then the AMI name is *EDB-AS15.2-AWS-2.0.1*. + + - **Instance type** — Select the instance type with the compute, memory, storage, and network capabilities you require.n - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, enter a key pair name, select a key pair type, and select a private key file format. Download the new key pair and move it to a location where you can access it. You need a key pair to securely connect to your instance. From 68c8fb4abed7b56cace81ee65e381ff6bb3ebbf3 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 27 Apr 2023 09:13:45 -0400 Subject: [PATCH 09/15] fix build issues --- .../docs/epas/15/planning/deployment_options/aws_epas.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 338eba01657..552923b6eeb 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -26,7 +26,7 @@ To create an EDB Postgres Advanced Server (EPAS) instance on AWS: - **Name and tags** — Provide the name of the server; for example, *EDB test server*. - - **Application and OS Images (Amazon Machine Image)** — Select the *My AMIs* tab. On the *My AMIs* tab, select *Owned by me* to choose the *EDB-AS-AWS-* image to launch the EDB Postgres Advanced Server instance, where `` is the EDB Postgres Advanced Server version, and `` is the AMI version. For example, if the EDB Postgres Advanced Server version is 15.2 and the AMI version is 2.0.1, then the AMI name is *EDB-AS15.2-AWS-2.0.1*. + - **Application and OS Images (Amazon Machine Image)** — Select the *My AMIs* tab. On the *My AMIs* tab, select *Owned by me* to choose the `EDB-AS-AWS-` image to launch the EDB Postgres Advanced Server instance, where `` is the EDB Postgres Advanced Server version, and `` is the AMI version. For example, if the EDB Postgres Advanced Server version is 15.2 and the AMI version is 2.0.1, then the AMI name is *EDB-AS15.2-AWS-2.0.1*. - **Instance type** — Select the instance type with the compute, memory, storage, and network capabilities you require.n From d1f0bacbf760d823affb7f856972a9c770d91b0c Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 27 Apr 2023 09:41:25 -0400 Subject: [PATCH 10/15] copy edits related to image name added code formatting --- .../epas/15/planning/deployment_options/aws_epas.mdx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 552923b6eeb..897bf0e7181 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -3,10 +3,11 @@ title: "EDB Postgres Advanced Server Amazon Machine Image (EDB AMI)" navTitle: EDB AMI --- -You can purchase EDB Postgres Advanced Server Amazon Machine Image (EDB AMI) from Amazon Marketplace. EDB AMI is a pre-configured template with EDB Postgres Advanced Server installed on RHEL 8. +You can purchase EDB Postgres Advanced Server Amazon Machine Image (EDB AMI) from Amazon Marketplace. + With EDB AMI, you can: - Create an EDB Postgres Advanced Server 15 instance on AWS - Connect to the instance @@ -26,7 +27,12 @@ To create an EDB Postgres Advanced Server (EPAS) instance on AWS: - **Name and tags** — Provide the name of the server; for example, *EDB test server*. - - **Application and OS Images (Amazon Machine Image)** — Select the *My AMIs* tab. On the *My AMIs* tab, select *Owned by me* to choose the `EDB-AS-AWS-` image to launch the EDB Postgres Advanced Server instance, where `` is the EDB Postgres Advanced Server version, and `` is the AMI version. For example, if the EDB Postgres Advanced Server version is 15.2 and the AMI version is 2.0.1, then the AMI name is *EDB-AS15.2-AWS-2.0.1*. + - **Application and OS Images (Amazon Machine Image)** — On the **My AMIs** tab, select **Owned by me** and choose the EDB Postgres Advanced Server image. The image name is in the format `EDB-AS-AWS-`, where: + + - `` is the version of EDB Postgres Advanced Server + - `` is the version of the image + + For example, if the EDB Postgres Advanced Server version is 15.2 and the AMI version is 2.0.1, then the image name is `EDB-AS15.2-AWS-2.0.1`. - **Instance type** — Select the instance type with the compute, memory, storage, and network capabilities you require.n From 333f4e3465b44d25b646a17ea9a18853975127c7 Mon Sep 17 00:00:00 2001 From: drothery-edb Date: Thu, 27 Apr 2023 11:57:48 -0400 Subject: [PATCH 11/15] updated product name --- .../15/planning/deployment_options/aws_epas.mdx | 13 ++++++------- .../epas/15/planning/deployment_options/index.mdx | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 897bf0e7181..c0937760176 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -1,21 +1,19 @@ --- -title: "EDB Postgres Advanced Server Amazon Machine Image (EDB AMI)" -navTitle: EDB AMI +title: "Deploying from an Amazon machine mmage on AWS " +navTitle: Deploying from an AMI --- -EDB AMI is a pre-configured template with EDB Postgres Advanced Server installed on RHEL 8. +EDB Postgres Advanced Server Amazon machine image (AMI) is a pre-configured template with EDB Postgres Advanced Server installed on RHEL 8. You can purchase the EDB Postgres Advanced Server AMI from Amazon Marketplace. -You can purchase EDB Postgres Advanced Server Amazon Machine Image (EDB AMI) from Amazon Marketplace. - -With EDB AMI, you can: +With the EDB Postgres Advanced Server AMI, you can: - Create an EDB Postgres Advanced Server 15 instance on AWS - Connect to the instance - Initialize and use an EDB Postgres Advanced Server cluster ## Creating an instance -To create an EDB Postgres Advanced Server (EPAS) instance on AWS: +To create an EDB Postgres Advanced Server instance on AWS: 1. Log into your AWS account. @@ -30,6 +28,7 @@ To create an EDB Postgres Advanced Server (EPAS) instance on AWS: - **Application and OS Images (Amazon Machine Image)** — On the **My AMIs** tab, select **Owned by me** and choose the EDB Postgres Advanced Server image. The image name is in the format `EDB-AS-AWS-`, where: - `` is the version of EDB Postgres Advanced Server + - `` is the version of the image For example, if the EDB Postgres Advanced Server version is 15.2 and the AMI version is 2.0.1, then the image name is `EDB-AS15.2-AWS-2.0.1`. diff --git a/product_docs/docs/epas/15/planning/deployment_options/index.mdx b/product_docs/docs/epas/15/planning/deployment_options/index.mdx index 6137b9e5b75..6036358b005 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/index.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/index.mdx @@ -11,7 +11,7 @@ You can deploy and install EDB Postgres Advanced Server using the following meth - [EDB PostgreSQL for Kubernetes](/postgres_for_kubernetes/latest/) is an operator designed by EnterpriseDB to manage PostgreSQL workloads on any supported Kubernetes cluster running in private, public, hybrid, or multi-cloud environments. EDB PostgreSQL for Kubernetes adheres to DevOps principles and concepts such as declarative configuration and immutable infrastructure. -- [EDB AMI](aws_epas) is an Amazon machine image containing EDB Postgres Advanced Server available from Amazon Marketplace. +- [EDB Postgres Advanced Server AMI](aws_epas) is an Amazon machine image containing EDB Postgres Advanced Server available from Amazon Marketplace. - Installation using native packages or installers: From 19134de990f5cdba12f5409b8fa8b77fb5ddd94d Mon Sep 17 00:00:00 2001 From: Betsy Gitelman <93718720+ebgitelman@users.noreply.github.com> Date: Thu, 27 Apr 2023 12:40:29 -0400 Subject: [PATCH 12/15] Edits to AMI deployment content --- .../planning/deployment_options/aws_epas.mdx | 31 +++++++++---------- .../15/planning/deployment_options/index.mdx | 12 +++---- 2 files changed, 19 insertions(+), 24 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index c0937760176..96c6bf64109 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -1,10 +1,10 @@ --- -title: "Deploying from an Amazon machine mmage on AWS " +title: "Deploying from an Amazon Machine Image on AWS " navTitle: Deploying from an AMI --- -EDB Postgres Advanced Server Amazon machine image (AMI) is a pre-configured template with EDB Postgres Advanced Server installed on RHEL 8. You can purchase the EDB Postgres Advanced Server AMI from Amazon Marketplace. +EDB Postgres Advanced Server Amazon Machine Image (AMI) is a preconfigured template with EDB Postgres Advanced Server installed on RHEL 8. You can purchase the EDB Postgres Advanced Server AMI from Amazon Marketplace. With the EDB Postgres Advanced Server AMI, you can: - Create an EDB Postgres Advanced Server 15 instance on AWS @@ -17,25 +17,25 @@ To create an EDB Postgres Advanced Server instance on AWS: 1. Log into your AWS account. -1. On the AWS home page navigate to **EC2**. +1. On the AWS home page, navigate to EC2. -1. On the EC2 Dashboard, select **Launch instance**. +1. On the EC2 dashboard, select **Launch instance**. -1. On the **Launch an instance** page, specify the following: +1. On the Launch an instance page, specify the following: - - **Name and tags** — Provide the name of the server; for example, *EDB test server*. + - **Name and tags** — Provide the name of the server, for example, `EDB test server`. - **Application and OS Images (Amazon Machine Image)** — On the **My AMIs** tab, select **Owned by me** and choose the EDB Postgres Advanced Server image. The image name is in the format `EDB-AS-AWS-`, where: - - `` is the version of EDB Postgres Advanced Server + - `` is the version of EDB Postgres Advanced Server. - - `` is the version of the image + - `` is the version of the image. For example, if the EDB Postgres Advanced Server version is 15.2 and the AMI version is 2.0.1, then the image name is `EDB-AS15.2-AWS-2.0.1`. - - **Instance type** — Select the instance type with the compute, memory, storage, and network capabilities you require.n + - **Instance type** — Select the instance type with the compute, memory, storage, and network capabilities you require. - - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, enter a key pair name, select a key pair type, and select a private key file format. Download the new key pair and move it to a location where you can access it. You need a key pair to securely connect to your instance. + - **Key pair (login)** — Select an existing key pair or create a new key pair. If you create a new key pair, enter a key-pair name, select a key-pair type, and select a private-key file format. Download the new key pair and move it to a location where you can access it. You need a key pair to securely connect to your instance. - **Network settings** — For **Firewall**, select an existing security group or create a new security group. For more information, see [Network settings](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-networking.html). @@ -45,11 +45,11 @@ To create an EDB Postgres Advanced Server instance on AWS: Review the instance details in the **Summary** section on the right panel, and select **Launch instance**. - You can now view the instance and see the auto-assigned ip address by selecting **View all instances** pop-up at the bottom of the page. + You can now view the instance and see the auto-assigned IP address by selecting the **View all instances** popup at the bottom of the page. ## Connecting to an instance -You need the auto-assigned IP address to connect to your instance. To find the IP address select **Instances** in the navigation pane on the EC2 home page. Select the **Instance Id** next to your instance name to view the complete details of your instance including the IP address. +You need the auto-assigned IP address to connect to your instance. To find the IP address, select **Instances** in the navigation pane on the EC2 home page. To view the complete details of your instance, including the IP address, select the instance ID next to your instance name. 1. Open a terminal window. @@ -71,7 +71,7 @@ You need the auto-assigned IP address to connect to your instance. To find the I ## Getting started with a cluster -This example steps you through getting started with a EDB Postgres Advanced Server cluster including logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. +This example steps you through getting started with an EDB Postgres Advanced Server cluster. It includes logging in, ensuring the installation and initial configuration was successful, connecting to your cluster, and creating the user password. ```shell # Initialize the database cluster @@ -115,9 +115,6 @@ deptno | dname | loc ## Set up the repository -If you need to upgrade EDB Postgres Advanced Server or install any other EDB products you need to set up the EDB repository. Setting up the repository is a one-time task. +If you need to upgrade EDB Postgres Advanced Server or install any other EDB products, you need to set up the EDB repository. Setting up the repository is a one-time task. To set up the repository, go to [EDB repositories](https://www.enterprisedb.com/repos-downloads) and follow the instructions provided there. - - - diff --git a/product_docs/docs/epas/15/planning/deployment_options/index.mdx b/product_docs/docs/epas/15/planning/deployment_options/index.mdx index 6036358b005..f55f22a9722 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/index.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/index.mdx @@ -5,14 +5,12 @@ redirects: - /epas/latest/deployment_options/ --- -You can deploy and install EDB Postgres Advanced Server using the following methods: +You can deploy and install EDB Postgres Advanced Server using: -- [BigAnimal](/biganimal/latest) is a fully managed database-as-a-service with built-in Oracle compatibility, running in your cloud account and operated by the Postgres experts. BigAnimal makes it easy to set up, manage, and scale your databases. Provision PostgreSQL or EDB Postgres Advanced Server with Oracle compatibility. +- [BigAnimal](/biganimal/latest), a fully managed database-as-a-service with built-in Oracle compatibility. It runs in your cloud account and is operated by the Postgres experts. BigAnimal makes it easy to set up, manage, and scale your databases. Provision PostgreSQL or EDB Postgres Advanced Server with Oracle compatibility. -- [EDB PostgreSQL for Kubernetes](/postgres_for_kubernetes/latest/) is an operator designed by EnterpriseDB to manage PostgreSQL workloads on any supported Kubernetes cluster running in private, public, hybrid, or multi-cloud environments. EDB PostgreSQL for Kubernetes adheres to DevOps principles and concepts such as declarative configuration and immutable infrastructure. +- [EDB PostgreSQL for Kubernetes](/postgres_for_kubernetes/latest/), an operator designed by EnterpriseDB to manage PostgreSQL workloads on any supported Kubernetes cluster running in private, public, hybrid, or multi-cloud environments. EDB PostgreSQL for Kubernetes adheres to DevOps principles and concepts such as declarative configuration and immutable infrastructure. -- [EDB Postgres Advanced Server AMI](aws_epas) is an Amazon machine image containing EDB Postgres Advanced Server available from Amazon Marketplace. +- [EDB Postgres Advanced Server AMI](aws_epas), which is an Amazon Machine Image containing EDB Postgres Advanced Server. It's available from Amazon Marketplace. -- Installation using native packages or installers: - - - [Installing EDB Postgres Advanced Server](/epas/latest/installing) +- Native packages or installers. See [Installing EDB Postgres Advanced Server](/epas/latest/installing). From 5c40028c25d79ba38d26a6b3bead7bc759953ab0 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Tue, 2 May 2023 14:24:45 +0530 Subject: [PATCH 13/15] Edited one sentence --- .../docs/epas/15/planning/deployment_options/aws_epas.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 96c6bf64109..43eca2a6d83 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -45,7 +45,7 @@ To create an EDB Postgres Advanced Server instance on AWS: Review the instance details in the **Summary** section on the right panel, and select **Launch instance**. - You can now view the instance and see the auto-assigned IP address by selecting the **View all instances** popup at the bottom of the page. + At last, you see the success message along with the instance id. Select the instance id to view the instance and see the auto-assigned IP address. ## Connecting to an instance From 4a59b78e34e28e41a6e8a1086d181fb6505911b9 Mon Sep 17 00:00:00 2001 From: jkitchens32 <106532490+jkitchens32@users.noreply.github.com> Date: Tue, 12 Sep 2023 13:31:21 -0400 Subject: [PATCH 14/15] Update aws_epas.mdx Some suggested edits per my discussion in the Docs channel, it may need a few more based on my comments. --- .../docs/epas/15/planning/deployment_options/aws_epas.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 43eca2a6d83..4f616b5bbec 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -13,7 +13,7 @@ With the EDB Postgres Advanced Server AMI, you can: ## Creating an instance -To create an EDB Postgres Advanced Server instance on AWS: +To deploy an EDB Postgres Advanced Server instance on AWS: 1. Log into your AWS account. @@ -25,7 +25,7 @@ To create an EDB Postgres Advanced Server instance on AWS: - **Name and tags** — Provide the name of the server, for example, `EDB test server`. - - **Application and OS Images (Amazon Machine Image)** — On the **My AMIs** tab, select **Owned by me** and choose the EDB Postgres Advanced Server image. The image name is in the format `EDB-AS-AWS-`, where: + - **Application and OS Images (Amazon Machine Image)** — On the **AWS Marketplace** tab, type **EDB** in the search bar and choose the EDB Postgres Advanced Server image. The image name is in the format `EDB-AS-AWS-`, where: - `` is the version of EDB Postgres Advanced Server. From 8e0e976792315a67b456bc0c60fb55f2eeda3a12 Mon Sep 17 00:00:00 2001 From: nidhibhammar <59045594+nidhibhammar@users.noreply.github.com> Date: Thu, 21 Sep 2023 17:45:46 +0530 Subject: [PATCH 15/15] updated the content as per the screenshots provided --- .../15/planning/deployment_options/aws_epas.mdx | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx index 4f616b5bbec..5d7930dbe73 100644 --- a/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx +++ b/product_docs/docs/epas/15/planning/deployment_options/aws_epas.mdx @@ -19,13 +19,24 @@ To deploy an EDB Postgres Advanced Server instance on AWS: 1. On the AWS home page, navigate to EC2. -1. On the EC2 dashboard, select **Launch instance**. +1. On the EC2 dashboard, navigate to **Instances** and select **Launch instance**. -1. On the Launch an instance page, specify the following: +1. On the **Launch an instance** page, select **Choose an Amazon Machine Image(AMI)**. + +1. On the **Choose an Amazon Machine Image(AMI)** page, go to **AWS Marketplace AMIs** tab, type **EDB** in the search bar and choose the EDB Postgres Advanced Server image. + +1. Select the **EDB Postgres Advanced Server image** and review the all the tabs: + - Overview + - Product details + - Pricing + - Usage + - Support + +1. Select continue to go on the **Launch an instance** page, and specify the following: - **Name and tags** — Provide the name of the server, for example, `EDB test server`. - - **Application and OS Images (Amazon Machine Image)** — On the **AWS Marketplace** tab, type **EDB** in the search bar and choose the EDB Postgres Advanced Server image. The image name is in the format `EDB-AS-AWS-`, where: + - **Application and OS Images (Amazon Machine Image)** — The selected image name displays in the format `EDB-AS-AWS-`, where: - `` is the version of EDB Postgres Advanced Server.