title | description | author | tags | date_published |
---|---|---|---|---|
How to Set Up PostgreSQL on Google Compute Engine |
Learn how to get PostgreSQL running on Google Compute Engine. |
jimtravis |
Compute Engine, PostgreSQL |
2016-06-03 |
This tutorial shows how to set up PostgreSQL on Google Cloud Platform in just a few minutes. Follow this tutorial to configure PostgreSQL on an Ubuntu virtual machine instance on Compute Engine. Alternatively, you can use Cloud Launcher to set up PostgreSQL on Compute Engine with just a few clicks.
- Install PostgreSQL on a Compute Engine instance.
- Configure PostgreSQL for remote access.
- Configure a Cloud Platform firewall to open a port.
- Connect to PostgreSQL from a remote computer.
You'll need a Google Cloud Console project. You can use an existing project or click the button to create a new project.
This tutorial uses billable components of Cloud Platform, including:
- Google Compute Engine
Use the pricing calculator to generate a cost estimate based on your projected usage. New Cloud Platform users might be eligible for a free trial.
For the purposes of this tutorial, the default machine type works fine, so you don't need to change the default setting. In production, you need to decide how much computing power is required for your application. In general, database systems tend to be more constrained by I/O bottlenecks and hard disk speed than by CPU capabilities.
Most Linux distributions have some version of PostgreSQL integrated with their package managers. For this tutorial, you use Ubuntu Trusty because it includes PostgreSQL 9.3, which has some helpful tools that aren't available in earlier versions.
- In the Cloud Platform Console, go to the VM Instances page.
- Click the Create instance button.
- Set Name to
postgres-tutorial
. - In the Boot disk section, click Change to begin configuring your boot disk.
- In the Preconfigured image tab, choose Ubuntu 14.04 LTS.
- In the Boot disk type section, select Standard persistent disk.
- Click Select.
- In the Firewall section, select Allow HTTP traffic and Allow HTTPS traffic.
- Click the Create button to create the instance.
It will take a few moments to create your new instance.
Stay on the VM instances page for the next step.
To set up PostgreSQL, you must install it and set up a user.
Follow these steps to install PostgreSQL on your Compute Engine instance.
-
In the list of virtual machine instances, click the SSH button in the row of the instance to which you want to connect.
-
Update the packages. In the SSH terminal, enter the following command:
sudo apt-get update
-
Install PostgreSQL, including the PSQL client and server instrumentation:
sudo apt-get -y install postgresql postgresql-client postgresql-contrib
PostgreSQL created a default user, named "postgres", during installation. This user doesn't yet have a password, so you'll need to set one.
-
In your SSH terminal, run the root shell:
sudo -s
-
Run PSQL as user
postgres
, instead ofroot
, accesssing the database namedpostgres
:sudo -u postgres psql postgres
You should see the PSQL command prompt, which looks like this:
postgres=#
-
Enter the following command to set the password:
\password postgres
-
When prompted, enter and confirm the password you've chosen.
Important: For any system with an Internet connection, use a strong password to help keep the system secure.
-
Install the
adminpack
extension to enable the server instrumentation that you installed earlier. The console printsCREATE EXTENSION
when successful.CREATE EXTENSION adminpack;
-
Enter
\q
to exit PSQL. -
Enter
exit
to exit the root shell.
To connect to your Postgres database, you'll need to change a configuration file and open a port in the firewall on Cloud Platform.
By default, Postgres doesn't allow remote connections. To change this setting,
you can change the file named
pg_hba.conf
.
Follow these steps.
Caution: On production systems, or any system that has an Internet connection, use strong authentication methods and restrict traffic to only those users and IP addresses that you want to connect to each database.
-
In the SSH terminal window, edit
pg_hba.conf
. This tutorial uses thenano
editor, but you can substitute your favorite editor. For PostgreSQL version 9.3, you can enter:sudo nano ../../etc/postgresql/9.3/main/pg_hba.conf
-
Navigate to ip4.me to get the IPv4 address of your local computer.
You'll need this IP address in an upcoming steps.
-
Scroll down to the bottom of the file and add the following lines:
# IPv4 remote connections for the tutorial: host all all [YOUR_IPV4_ADDRESS]/32 md5
-
Replace
[YOUR_IPV4_ADDRESS]
with the address of your local computer. Note that the CIDR suffix/32
is used for a single address, which is what you're providing in this tutorial. -
Save the file and exit the editor. In
nano
, pressControl+x
and then use theReturn
key to accept the prompts to save the file. Note thatnano
might not clear the console screen properly, so if you have trouble reading the text in the console after closingnano
, enterclear
to clear the screen.
-
Open
postgresql.conf
for editing. For example, enter the following command:sudo nano ../../etc/postgresql/9.3/main/postgresql.conf
-
Scroll down to the line that begins with
#listen_addresses = 'localhost'
. -
Delete the
#
character to uncomment the line. -
Replace
localhost
with*
:listen_addresses = '*'
The
'*'
setting enables Postgres to listen on all IP addresses. This is a commonly used setting. When you set the IP address inhba.conf
in the previous step, you restricted access to the database to only your computer. -
Save the file and exit the editor.
-
Restart the database service. In the SSH terminal, enter:
sudo service postgresql restart
PostgreSQL accepts remote connections on port 5432. Follow these steps to add a firewall rule that enables traffic on this port.
-
In the Cloud Console, navigate to the Create a firewall rule page.
-
In the Network field, leave the network as default.
-
In the Name field, enter:
postgres-tutorial
-
In Source IP Ranges, enter the same IP address you used in
hba.conf
. This is the IP address of your local computer. Remember to include the/32
suffix, for example:1.2.3.4/32
. -
In Allowed protocols and ports, enter:
tcp:5432
-
Click Create.
Note that firewall rules are a global resource, so you'll only need to create this rule once for all instances.
Now you can connect to your PostgreSQL database from your computer. This tutorial uses pgAdmin, which is a popular client application for working with Postgres databases. Follow these steps.
-
Install pgAdmin on your local computer.
-
Run pgAdmin.
Note: On Mac OS X, you must open the program from Finder by choosing Open from the context menu. Otherwise, Mac OS X will display a security warning and fail to run the program.
-
Add the server. In pgAdmin3, you can click the first icon on the left side of the toolbar. Alternatively, click File > Add server.
-
In the New Server Registration window, in the Name field, enter:
Postgres tutorial
-
Navigate to the VM instances page and find the external IP address of your Compute Engine instance in the External IP column.
-
In the Host field, enter the external IP address of your Compute Engine instance.
Note: Enter only the address as it appears in the Cloud Console; don't add any protocol specifiers, such as
http://
or other characters. -
In the Port field, enter:
5432
-
In the Password field, enter the password that you set previously for the user named
postgres
. -
Click OK to close the window.
You should now be connected to your PostgreSQL database that is hosted on your Compute Engine instance. You can use pgAdmin to browse and modify the database and other settings. PgAdmin also includes a PSQL console that you can use to administer the database remotely.
This tutorial provided you with a basic look at a one-machine, single-disk installation of PostgreSQL. In a production environment, it's a good idea to employ strategies for high availability, scalability, archiving, backup, load balancing, and disaster recovery. For information about disaster recovery planning, see How to Design a Disaster Recovery Plan.
For better performance and data safety, install the database engine on the boot disk as this tutorial showed, and then set up the data storage on a separate persistent disk. To learn how to add a disk for your database, see the follow-up tutorial How to Set Up a New Persistent Disk for PostgreSQL Data.
For machines that have an Internet connection, use only strong passwords and limit access only to trusted IP ranges.
After you've finished the PostgreSQL tutorial, you can clean up the resources you created on Google Cloud Platform so you won't be billed for them in the future. The following sections describe how to delete or turn off these resources.
The easiest way to eliminate billing is to delete the project you created for the tutorial.
To delete the project:
- In the Cloud Platform Console, go to the Projects page.
- Click the trash can icon to the right of the project name.
Warning: Deleting a project has the following consequences:
If you used an existing project, you'll also delete any other work you've done in the project. You can't reuse the project ID of a deleted project. If you created a custom project ID that you plan to use in the future, you should delete the resources inside the project instead. This ensures that URLs that use the project ID, such as an appspot.com URL, remain available.
To delete a Compute Engine instance:
- In the Cloud Platform Console, go to the VM Instances page.
- Click the checkbox next to your postgres-tutorial instance.
- Click the Delete button at the top of the page to delete the instance.
- Deleting firewall rules for the default network
To delete a firewall rule:
- In the Cloud Platform Console, go to the Firewall Rules page.
- Click the checkbox next to the firewall rule you want to delete.
- Click the Delete button at the top of the page to delete the firewall rule.