Mercurial > hg > orthanc-book
view Sphinx/source/users/backup.rst @ 92:a3d3ff83024d
attachments doc + build with docker
author | amazy |
---|---|
date | Wed, 08 Feb 2017 20:22:42 +0100 |
parents | 669ea65ba7fb |
children | 365427cebb64 |
line wrap: on
line source
.. _backup: Backup ====== The way to backup Orthanc depends on the database back-end that is used. In any case, you of course have to backup your :ref:`configuration file <configuration>`. SQLite ------ By default, Orthanc uses SQLite to store its database. In this case, all the DICOM files together with the SQLite index are stored directly in the filesystem. The backup procedure works as follows: 1. Stop Orthanc. 2. Copy the following 3 elements: * Your configuration file. * The DICOM files (by default, the subdirectories of the ``OrthancStorage`` folder next to the configuration file). * The SQLite index (by default, the ``OrthancStorage/index*`` files next to the configuration file). 3. Restart Orthanc. It is mandatory to stop Orthanc, as the Orthanc core makes the assumption that it is the only process to access the SQLite database at any time. Karsten Hilbert provided us with a `sample backup script <https://github.com/jodogne/OrthancContributed/blob/master/Scripts/Backup/2014-01-31-KarstenHilbert.sh>`__ for the official Debian package of Orthanc that automates this backup procedure. Note that in this script, the call to the SQLite command-line tool is used to force the `WAL replay <http://www.sqlite.org/wal.html>`__. This manual replay should not be necessary for Orthanc >= 0.7.3. PostgreSQL ---------- The default SQLite engine is well adapted for DICOM routing or for image buffering tasks, but not for enterprise scenarios. In such cases, you are highly recommended to use the `PostgreSQL back-end <http://www.orthanc-server.com/static.php?page=postgresql>`__. If using PostgreSQL, you can do hot backups (i.e. while Orthanc is running), and you benefit from all the flexibility of PostgreSQL backup. These procedures are out of the scope of this manual. Please check the `official backup and restore manual <https://www.postgresql.org/docs/devel/static/backup.html>`__.