Getting started with Managed Service for PostgreSQL
To get started with the service:
Before you start
-
Go to the management console. Then log in to Yandex.Cloud or sign up if you don't have an account.
-
If you don't have a folder yet, create one:
-
Click Create folder in the Home page of the management console.
-
Enter the folder name.
- Length — from 3 to 63 characters.
- The name may contain lowercase Latin letters, numbers, and hyphens.
- The first character must be a letter. The last character can't be a hyphen.
-
Select Create a default network. A network is created with subnets in each availability zone.
-
Click Create.
-
You can connect to DB clusters from both inside and outside of the Cloud:
- To connect to a DB cluster from inside Yandex.Cloud, create a VM in the same network as the DB cluster (with Linux or Windows).
- To connect to a cluster from the internet, request public access to the hosts when creating the cluster.
Create a cluster
- In the management console, select the folder where you want to create a DB cluster.
- Select Managed Service for PostgreSQL.
- Click Create cluster.
- Set the cluster parameters and click Create cluster. This process is described in detail in Creating PostgreSQL clusters.
- When the cluster is ready, its status on the Managed Service for PostgreSQL dashboard changes to Running and its state to Alive. This may take some time.
Connect to the DB
-
To connect to the DB server, get an SSL certificate:
-
Create a folder:
$ mkdir ~/.postgresql
-
Get a certificate:
$ wget "https://storage.yandexcloud.net/cloud-certs/CA.pem" -O ~/.postgresql/root.crt
-
Configure permissions to the certificate:
$ chmod 0600 ~/.postgresql/root.crt
-
-
Use the
psql
command to connect:$ psql "host=<host address> \ port=6432 \ sslmode=verify-full \ dbname=<DB name> \ user=<DB user name>"
What's next
- Read about service concepts.
- Learn more about creating a cluster and connecting to the database.
- Read questions and answers.