Tutorial

How To Move a PostgreSQL Data Directory to a New Location on Ubuntu 16.04

How To Move a PostgreSQL Data Directory to a New Location on Ubuntu 16.04
Not using Ubuntu 16.04?Choose a different version or distribution.
Ubuntu 16.04

Introduction

Databases grow over time, sometimes outgrowing the space on their original file system. You can also run into I/O contention when they’re located on the same partition as the rest of the operating system. RAID, network block storage, and other devices can offer redundancy and other desirable features. Whether you’re adding more space, evaluating ways to optimize performance, or looking to take advantage of other storage features, this tutorial will guide you through relocating PostgreSQL’s data directory.

Prerequisites

To complete this guide, you will need:

In this example, we’re moving the data to a block storage device mounted at /mnt/volume-nyc1-01. If you are using Block Storage on DigitalOcean, this guide can help you mount your volume before continuing with this tutorial.

No matter what underlying storage you use, the following steps can help you move the data directory to a new location.

Step 1 — Moving the PostgreSQL Data Directory

To prepare for moving PostgreSQL’s data directory, let’s verify the current location by starting an interactive PostgreSQL session. In the line below, psql is the command to enter the interactive monitor, and -u postgres tells sudo to execute psql as the system’s postgres user:

  1. sudo -u postgres psql

Once you’ve entered the monitor, select the data directory:

  1. SHOW data_directory;
Output
data_directory ------------------------------ /var/lib/postgresql/9.5/main (1 row)

This output confirms that PostgreSQL is configured to use the default data directory, /var/lib/postgresql/9.5/main, so that’s the directory we need to move. Once you’ve confirmed the directory on your system, type \q to quit.

To ensure the integrity of the data, we’ll shut down PostgreSQL before we actually make changes to the data directory:

  1. sudo systemctl stop postgresql

systemctl doesn’t display the outcome of all service management commands. To verify you’ve succeeded, use the following command:

  1. sudo systemctl status postgresql

You can confirm it’s shut down if the final line of the output tells you the server is stopped:

Output
. . . Jul 22 16:22:44 ubuntu-512mb-nyc1-01 systemd[1]: Stopped PostgreSQL RDBMS.

Now that the server is shut down, we’ll copy the existing database directory to the new location with rsync. Using the -a flag preserves the permissions and other directory properties while -v provides verbose output so you can follow the progress.

Note: Be sure there is no trailing slash on the directory, which may be added if you use tab completion. When there’s a trailing slash, rsync will dump the contents of the directory into the mount point instead of transferring it into a containing PostgreSQL directory:

We’re going to start the rsync from the postgresql directory in order to mimic the original directory structure in our new location. By creating that postgresql directory within the mount-point directory and retaining ownership by the PostgreSQL user, we can avoid permissions problems for future upgrades. The version directory, 9.5 isn’t strictly necessary since we’ve defined the location explicitly in the postgresql.conf file, but following the project convention certainly won’t hurt, especially if there’s a need in the future to run multiple versions of PostgreSQL.

  1. sudo rsync -av /var/lib/postgresql /mnt/volume-nyc1-01

Once the copy is complete, we’ll rename the current folder with a .bak extension and keep it until we’ve confirmed the move was successful. By re-naming it, we’ll avoid confusion that could arise from files in both the new and the old location:

  1. sudo mv /var/lib/postgresql/9.5/main /var/lib/postgresql/9.5/main.bak

Now we’re ready to turn our attention to configuration.

Step 2 — Pointing to the New Data Location

PostgreSQL has several ways to override configuration values. By default, the data_directory is set to /var/lib/postgresql/9.5/main in the /etc/postgresql/9.5/main/postgresql.conf file. Edit this file to reflect the new data directory:

  1. sudo nano /etc/postgresql/9.5/main/postgresql.conf

Find the line that begins with data_directory and change the path which follows to reflect the new location.

In our case, the updated file looks like the output below:

/etc/postgresql/9.5/main/postgresql.conf
. . .
data_directory = '/mnt/volume-nyc1-01/postgresql/9.5/main'
. . .

Step 3 — Restarting PostgreSQL

We’re ready to start PostgreSQL.

  1. sudo systemctl start postgresql
  2. sudo systemctl status postgresql

To make sure that the new data directory is indeed in use, start the PostgreSQL monitor.

  1. sudo -u postgres psql

Look at the value for the data directory again:

  1. SHOW data_directory;
Output
data_directory ----------------------------------------- /mnt/volume-nyc1-01/postgresql/9.5/main (1 row)

Now that you’ve restarted PostgreSQL and confirmed that it’s using the new location, take the opportunity to ensure that your database is fully functional. Once you’ve verified the integrity of any existing data, you can remove the backup data directory:

  1. sudo rm -Rf /var/lib/postgresql/9.5/main.bak

Restart PostgreSQL one final time to be sure that it works as expected:

  1. sudo systemctl restart postgresql
  2. sudo systemctl status postgresql

Conclusion:

If you’ve followed along, your database should be running with its data directory in the new location and you’ve completed an important step toward being able to scale your storage. You might also want to take a look at 5 Common Server Setups For Your Web Application for ideas on how to create a server infrastructure to help you scale and optimize web applications.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
10 Comments


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Great write-up. Thanks for posting. Worked great with 9.3 on Ubuntu 14.04 (just needed to swap version numbers and use /etc/init.d/postgresql stop/start/status)

Thanks

I also got the error psql: could not connect to server: No such file or directory Is the server running locally and accepting connections on Unix domain socket “/var/run/postgresql/.s.PGSQL.5432”?

make sure about permissions. even on folder before postgresql

Thanks for the amazing tutorial. There is a small issue though.

First you’re creating a backup like this;

sudo mv /var/lib/postgresql/9.5/main /var/lib/postgresql/9.5/main.bak

But then try to remove it like this;

sudo rm -Rf /var/lib/postgresql.bak

Might want to fix that.

This worked well. The only thing I’m having trouble with is it not finding the data_directory on reboot. If I reboot the droplet and try to run psql, it gives me this error:

psql: could not connect to server: No such file or directory

If I manually restart the posgresql service, it will find the directory and work again.

Any ideas how to get the postgresql service to wait for the block storage to mount?

Thanks!

Hello, this instruction worked well for me. I can create a database afterwards and fill it with data. But after 4 hours my databaseserver crashed and the postgresql log file shows that it serverprocess can’t create a new WAL segment file. The first segment file 000000010000000000000001 exists when i change the data directory, so it works first. But when the server shutdown i can see in the log file: can’t open pg_wal/000000010000000000000002, file not found.

Did somebody know, why the serverprocess can’t create this file automatically? Thanks.

For CentOS 7 its same the only differences are…

Config is: /var/lib/pgsql/11/data/postgresql.conf Data directory is: /var/lib/pgsql/11/data

use sudo rsync -rtv --modify-window=1 /source /dest for external fat32 drives

In Postgres 10, one needs to also switch to user postgres and run initdb -D [new_directory]

In case that something goes wrong, how do i use the backup?

If i do this, will postgre still be able to read the data from the older data_directory? or what should i do to have postgre to read from a directory (that has no space left) and a new volume?

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel