Listing Thumbnail

    PostgreSQL-18 on Amazon Linux 2023 with Support by Easycloud

     Info
    Sold by: EASYCLOUD 
    Deployed on AWS
    AWS Free Tier
    This product has charges associated with it for technical support with a 24-hour response time. This AMI provides PostgreSQL 18 on an Amazon Linux 2023 minimal installation with the latest updates, repackaged by Easycloud with continuous support.

    Overview

    This is a repackaged open source software product wherein additional charges apply for technical support with a 24-hour response time. PostgreSQL 18, built on a minimal Amazon Linux 2023 installation, is included in this AMI, repackaged by Easycloud. It provides a production-grade relational database engine with strict ACID guarantees and deep extensibility, deliberately engineered to serve as a dependable transactional and analytical data layer for cloud-native applications.

    Core Features & Integrations

    • Amazon Linux 2023 Foundation: Provides a highly optimized, cloud-native underlying OS with familiar RPM ecosystem paradigms, ensuring high security, AWS-native performance, and seamless operational interoperability for users transitioning from RHEL, AlmaLinux, Rocky Linux, and traditional CentOS deployments.

    • PostgreSQL 18: One of the world's most advanced open-source relational database systems, known for strict ACID compliance, a rich SQL feature set, and deep extensibility through JSONB, full text search, and foreign data wrappers. Release 18 advances that lineage with an asynchronous I/O subsystem, skip scan support for multicolumn B-tree indexes, and further logical replication improvements, delivering measurable gains for both transactional and analytical workloads. The matching contrib extension set is installed alongside the server, so widely used modules such as pg_stat_statements, pgcrypto, and postgres_fdw are available immediately.

    Key Benefits

    • Extensibility Without Compromising ACID Guarantees: PostgreSQL pairs full ACID transactions and MVCC concurrency with an extension system that lets you add data types, index methods, procedural languages, and foreign data wrappers without forking the engine. That combination is why a single PostgreSQL deployment can absorb JSON document storage, geospatial queries, time-series rollups, and vector similarity search that would otherwise demand separate specialized databases. Major release 18 carries upstream community support through November 2030, giving the deployment a long and predictable maintenance horizon.

    • The Ultimate Relational Data Store: By starting with a bloat-free Amazon Linux 2023 installation, maximum CPU and memory are dedicated entirely to the PostgreSQL engine. This makes it the perfect, conflict-free foundation for transactional applications built with Django, Spring Boot, FastAPI, Node.js, and Python, including ORM stacks such as Hibernate, Prisma, and SQLAlchemy. It seamlessly integrates with self-hosted platforms that standardize on PostgreSQL (Supabase, Keycloak, Odoo, Discourse, Strapi, NocoDB, n8n), pairs naturally with adjacent data layers (MySQL, MariaDB, Redis), and serves as a rock-solid backbone for analytics, monitoring, and container platforms (Metabase, Grafana, Zabbix, Sentry, Docker, Kubernetes), ensuring your data infrastructure scales without limits.

    • Production Ready & Expert Support: Secured with the latest OS patches. It delivers a highly stable environment, fully supported by comprehensive documentation and fast technical assistance (guaranteed 24-hour response time) to ensure your infrastructure runs smoothly without costly downtime.

    Highlights

    • Amazon Linux 2023 (Minimal Installation),updated to the latest version.
    • Professional installation following best practices.
    • Expert Support: Backed by comprehensive documentation and fast, professional technical assistance.

    Details

    Delivery method

    Delivery option
    64-bit (x86) Amazon Machine Image (AMI)

    Latest version

    Operating system
    AmazonLinux Amazon Linux 2023

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    PostgreSQL-18 on Amazon Linux 2023 with Support by Easycloud

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time. Alternatively, you can pay upfront for a contract, which typically covers your anticipated usage for the contract duration. Any usage beyond contract will incur additional usage-based costs.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.
    If you are an AWS Free Tier customer with a free plan, you are eligible to subscribe to this offer. You can use free credits to cover the cost of eligible AWS infrastructure. See AWS Free Tier  for more details. If you created an AWS account before July 15th, 2025, and qualify for the Legacy AWS Free Tier, Amazon EC2 charges for Micro instances are free for up to 750 hours per month. See Legacy AWS Free Tier  for more details.

    Usage costs (791)

     Info
    • ...
    Dimension
    Cost/hour
    t3.medium
    Recommended
    $0.04
    t2.micro
    $0.03
    t3.micro
    $0.03
    t2.nano
    $0.03
    t3.nano
    $0.03
    t3a.nano
    $0.03
    t1.micro
    $0.03
    t3a.micro
    $0.03
    m1.small
    $0.04
    t2.small
    $0.04

    Vendor refund policy

    No refunds. Cancel anytime.

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    64-bit (x86) Amazon Machine Image (AMI)

    Amazon Machine Image (AMI)

    An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.

    Version release notes

    Latest Updates

    Additional details

    Usage instructions

    Connection Methods

    Once launched, SSH into the instance. The default username is 'ec2-user'. You can switch to the root user environment by running: sudo su -

    Install Information

    • OS: Amazon Linux 2023

    • PostgreSQL: 18.4

    • Service Name: postgresql

    • Config File: '/var/lib/pgsql/data/postgresql.conf'

    • Authentication Config: '/var/lib/pgsql/data/pg_hba.conf'

    • Data Directory: '/var/lib/pgsql/data'

    1. Local Admin Access: Connect locally by running: 'sudo -u postgres psql'

    2. Manage Service: Use 'sudo systemctl start/stop/restart postgresql' to control the database daemon.

    3. Enable Remote Access:

    By default, PostgreSQL only allows local connections. To enable remote access, complete these exact steps:

    • Step 1: Open '/var/lib/pgsql/data/postgresql.conf', find the 'listen_addresses' parameter, uncomment it, and set it to: listen_addresses = '*'

    • Step 2: Open '/var/lib/pgsql/data/pg_hba.conf', scroll to the very bottom, and append this exact line: host all all 0.0.0.0/0 scram-sha-256

    • Step 3: Apply the configuration changes by running: sudo systemctl restart postgresql

    • Step 4: AWS Firewall: Go to your AWS Console and ensure the EC2 Security Group has an Inbound Rule allowing TCP Port 5432.

    Firewall Configuration

    • SSH (Port 22): Required for initial system access.

    • PostgreSQL (Port 5432): Required for remote database clients (e.g., pgAdmin, DBeaver) or application servers to connect.

    • Security Recommendation: For production environments, strictly limit access to ports 22 and 5432 to trusted IP addresses only via AWS Security Groups.

    Support

    Vendor support

    Should you encounter any issues while using the system, please do not hesitate to contact us via email at: support@easyclouds.io ,Thank you!

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.