Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex DataSphere
  • Getting started
    • All guides
      • Connecting to S3 using boto3
      • Connecting to a ClickHouse® database
      • Connecting to a PostgreSQL database
      • Connecting to Yandex Disk
      • Connecting to Google Drive
    • Migrating a workflow to a new version
  • Terraform reference
  • Audit Trails events
  • Access management
  • Pricing policy
  • Public materials
  • Release notes

In this article:

  • Getting started
  • Connecting to a host
  1. Step-by-step guides
  2. Connecting to data sources
  3. Connecting to a PostgreSQL database

Connecting to a PostgreSQL database

Written by
Yandex Cloud
Updated at March 19, 2026
View in Markdown
  • Getting started
  • Connecting to a host

Managed Service for PostgreSQL enables deploying and maintaining PostgreSQL server clusters in the Yandex Cloud infrastructure.

Getting startedGetting started

  1. Create a new Managed Service for PostgreSQL cluster with public host access. You can also use an existing cluster with publicly accessible hosts.
  2. Configure cluster security groups.
  3. Open the DataSphere project:

    1. Select the project in your community or on the DataSphere home page in the Recent projects tab.

    2. Click Open project in JupyterLab and wait for the loading to complete.
    3. Open the notebook tab.

Connecting to a hostConnecting to a host

Connecting with SSL
Connecting without SSL

To connect to Managed Service for PostgreSQL cluster hosts:

  1. Get an SSL certificate. To do this, enter this command in a notebook cell:

    #!:bash
    mkdir ~/.postgresql
    wget "https://storage.yandexcloud.net/cloud-certs/CA.pem" -O ~/.postgresql/root.crt && \
    chmod 0600 ~/.postgresql/root.crt
    
  2. Establish a database connection. To do this, enter this command in a notebook cell:

    %pip install psycopg2-binary
    import psycopg2
    conn = psycopg2.connect("""
        host=<PostgreSQL_host_FQDN>
        port=6432
        sslmode=verify-full
        dbname=<DB_name>
        user=<DB_username>
        password=<DB_user_password>
        target_session_attrs=read-write
    """)
    q = conn.cursor()
    q.execute('SELECT version()')
    print(q.fetchone())
    

    If you succeed connecting to the cluster, you will get the PostgreSQL version in response to your test request:

    ('PostgreSQL 14.6 (Ubuntu 14.6-201-yandex.52665.7e82983c2c) on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0, 64-bit',)
    

Connecting without an SSL certificate is only supported for non-public hosts. If this is the case, internal cloud network traffic will not be encrypted when connecting to a database.

  1. Configure your project. To do this, add or modify the following fields on the project edit page as appropriate:

    • Default folder hosting the deployed Managed Service for PostgreSQL cluster.

    • Service account with the managed-postgresql.editor role or higher.

    • Subnet where the database host resides. The subnet must be in the same availability zone where you created the community.

      Note

      To enable internet access, specify a subnet with a NAT gateway.

  2. Establish a database connection. To do this, enter this command in a notebook cell:

    %pip install psycopg2-binary
    import psycopg2
    
    conn = psycopg2.connect("""
        host=rc1a-<PostgreSQL_cluster_ID>.mdb.yandexcloud.net
        port=6432
        sslmode=disable
        dbname=<DB_name>
        user=<DB_username>
        password=<DB_user_password>
        target_session_attrs=read-write
    """)
    
    q = conn.cursor()
    q.execute('SELECT version()')
    
    print(q.fetchone())
    
    conn.close()
    

    If you succeed connecting to the cluster, you will get the PostgreSQL version in response to your test request:

    ('PostgreSQL 14.6 (Ubuntu 14.6-201-yandex.52665.7e82983c2c) on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0, 64-bit',)
    

Was the article helpful?

Previous
Connecting to a ClickHouse® database
Next
Connecting to Yandex Disk
© 2026 Direct Cursus Technology L.L.C.