Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

Do not forget to configure your PostgreSQL database instance's pg_hba.conf and postgresql.conf files for allowing incomming connections for desired user and database name.

Backup and restore

You can backup the BellaDati's database using the PostgreSQL dump command:

Code Block

pg_dump -U user -F c -v -f "path_to_dump/dump.backup" belladati_db

The restore is made by pg_restore command:

Code Block

pg_restore -v -c -O -d belladati_db -U user path_to_dump/dump.backup

Next steps

Continue configuring BellaDati WAR for your application server as described on:

...