Skip to content

Instantly share code, notes, and snippets.

@angristan
Last active February 16, 2019 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angristan/57507e7483ebcd8654b38d2733c07a17 to your computer and use it in GitHub Desktop.
Save angristan/57507e7483ebcd8654b38d2733c07a17 to your computer and use it in GitHub Desktop.
Mastodon DB migration

Migrating the Mastodon database

On the old server

postgres@postgresql:~$ pg_dump -Fc mastodon -f mastodon.dump

OR

postgres@postgresql:~$ pg_dump -Fc mastodon > mastodon.dump

On the new server

postgres=# CREATE USER mastodon;
postgres@postgresql:~$ createdb -T template0 mastodon
postgres@postgresql:~$ pg_restore -n public --no-owner --role=mastodon -d mastodon mastodon.dump
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment