Build > Quick Guides > Database > RDBMS from Windows
How to connect to the PostgreSQL RDBMS server from Windows
How to connect to the PostgreSQL RDBMS server from MacOS
Follow these steps on a Mac to generate your public/private keys and access the PostgreSQL server.
Terminal (Terminal.app) is the terminal emulator included in the macOS operating system. You can use this application to generate your SSH key.
Terminal
From Terminal, follow these instructions (see screenshot below):
Type: ssh-keygen -t rsa
Hit return to use the default file / location
Enter a passphrase
Enter your passphrase again
Type: cat ~/.ssh/id_rsa.pub
In the screenshot below:
(a)
is the location and filename of your private key(b)
is the location and filename of your public key(c)
are the contents of your public keyNote
You will need to provide the contents of (c)
to your Medic contact or RDBMS administrator. It should start with ssh-rsa
and end with something that looks like an email address.
SSH Commands
Copy your public key and provide it to your Medic contact or RDBMS administrator. Your public key is not sensitive and can be shared over slack, github, etc…
Once the RDBMS administrator has added your public SSH key on RDBMS, the administrator will provide you with login credentials to the SSH server as well as for PostgreSQL.
Verify you can successfully connect to to the SSH server with ssh -i ~/.ssh/id_rsa <user>@<rdbms host> -p <port>
. If your setup is correct, you should login to the server and see the prompt of your terminal change to <user>@rdbms:~$
You should be able to access PostgreSQL from a SQL client using the provided credentials. Some common SQL clients include: pgAdmin, DBeaver, Postico.
From your SQL client, use the settings mentioned below to connect. Be sure to select the Private Key that you generated above.
Field | Value |
---|---|
Host | localhost |
Host Port | 5432 |
User | <provided by Medic> |
Password | <provided by Medic> |
Database | <provided by Medic> |
SSH Host | rdbms.dev.medicmobile.org |
SSH Port | 33696 |
SSH User | <provided by Medic> |
SSH Password | N/A - Use Private Key |
Private Key | Choose the location of the private key generated above |
PG Connection Settings
How to connect to the PostgreSQL RDBMS server from Windows