Learn how to connect to a PostgreSQL® database instance with a Command Line Interface (CLI).
Cloud Databases allow you to focus on building and deploying cloud applications while OVHcloud takes care of the database infrastructure and maintenance in operational conditions.
Requirements
- A Public Cloud project in your OVHcloud account
- Access to the OVHcloud Control Panel
- A PostgreSQL® database running on your OVHcloud Cloud Databases (this guide can help you to meet this requirement)
- Configure your PostgreSQL® instance to accept incoming connections
Concept
A PostgreSQL® instance can be managed in multiple ways. One of the easiest yet powerful ways is to use a Command Line Interface (CLI), also known as a Console or Terminal.
To interact correctly with the PostgreSQL® instance, we first need to install something called a PostgreSQL® client to connect and control the PostgreSQL® service remotely. It's a Client-Server interaction.
Instructions
Installing the PostgreSQL® client
Please note that PostgreSQL®-Client is natively integrated into the PostgreSQL® software package.
You first need to install software to interact with your PostgreSQL® instance remotely. This official software can be installed on various client machines such as your own computer, a VPS, or a virtual machine. The only rule is to reach the public network (Internet) and have sufficient rights to install it.
To do this, and depending on your configuration, you may need to follow official PostgreSQL® documentation to install the PostgreSQL® client (referred to as psql).
Follow these steps after selecting Windows, macOS, or Linux as the operating system.
As explained, the postgresql-client is often included by default.
Example with Linux/Debian:
We will now follow official PostgreSQL® documentation to perform our first connection.
In your CLI, type psql --version. The result should look like this:
It means that psql is correctly installed and working properly. If you do not see something like this result, please go back to the previous step and reinstall the PostgreSQL® client.
Connect to your PostgreSQL® instance
We will follow the official PostgreSQL® documentation.
To perform a connection, simply type psql followed by the Service URI copied before:
Don't forget that you need to modify the username, password, hostname, and port. In our example, it will look like this:
Once connected correctly, you should see something similar to the following:
Congratulations! You are now fully able to interact with your PostgreSQL® instance!
PostgreSQL® client usage
Once connected, you can manage your PostgreSQL® instance with built-in PostgreSQL® client methods.
Please follow the official PostgreSQL® documentation.
To verify:
-
\h CREATE DATABASEwill display help on a specific command (here for CREATE DATABASE); -
\l+will list all the databases; -
select * from pg_user;will display information about existing users.
In our example, it will look like this:
Go further
For more information and tutorials, please see our other Managed Databases & Analytics or Platform as a Service guides. You can also explore the guides for other OVHcloud products and services.
OVHcloud Managed Databases and Analytics:
- Grafana® is a registered trademark of Grafana Labs and is used with the permission of Grafana Labs. OVH SAS and its subsidiaries are not affiliated with or endorsed by Grafana Labs.
- Kafka® is a registered trademark of The Apache Software Foundation and has been licensed for use by OVHcloud, who has no affiliation with and is not endorsed by The Apache Software Foundation.
- MongoDB® is a registered trademark of MongoDB, Inc.
- MySQL® is a registered trademark of Oracle and/or its affiliates.
- PostgreSQL® is a registered trademark of the PostgreSQL Community Association of Canada.