Difference between revisions of "Backing Up Using the Built In Tools"

From OpenEMR Project Wiki
(11 intermediate revisions by the same user not shown)
Line 64: Line 64:
2. Copy emr_backup.tar and restore script to the home directory.
2. Copy emr_backup.tar and restore script to the home directory.


3. Delete the openemr web directory.
3. Have the OpenEMR database password (see Step 8 for its location) recorded elsewhere, '''then''' delete the openemr web directory.
:If not, the password will be lost with the deletion of the web directory.


4. Open Terminal.
4. Open Terminal.


5. Issue this command after the dollar sign: sudo ./restore ($ <span style = "color:red;">sudo ./restore</span>), 1 space after $ with no space before restore.
5. Issue this command after the dollar sign: sudo ./restore ($ <span style = "color:red;">sudo ./restore</span>), 1 space after $ with no space before restore.  
:This command must be used because it is not possible to run the script by double clicking on the icon.


6. Path to the backup file: /home/<your home directory username>/emr_backup.tar
6. Path to the backup file: /home/<your home directory username>/emr_backup.tar
Line 75: Line 77:


   
   
7. Answer Y when asked about supplying the site ID, etc.
7. Answer Y when asked about supplying the site ID
:If the practice has only 1 site, use the default values between the square brackets and hit Enter each time.


8. If the practice has only 1 site, use the default values between the square brackets and hit enter each time.
[[File:Restore2.png|center]]
 
 
8. The OpenEMR database password can be found in openemr/sites/default/sqlconf.php, if the practice has only 1 site.
 
[[File:12rs.png|center]]
 
 
:Enter the password when prompted.
 
[[File:7rs.png|center]]
 
 
:Understand that there are two passwords for MySQL; one for user, '''openemr''' and one for user, '''root'''; which is required in the next step.  Be certain that the distinction is clear in your mind before you attempt recovery.
 
:With repeat restores to the same database, this step may be skipped; because the password had been stored from a prior recovery.


9. If the practice has multiple sites, supply the relevant data.
:If the practice has multiple sites, supply the relevant data.


[[File:Restore2.png|center]]
:<span style = "color:red;">'''N.B.'''</span>:  If the user is restoring to a new device, he must use the password from the '''new''' device, not the old machine.  If he uses the credential from the old machine, he will have difficulties logging into the new device.
9. Supply the MySQL root password. If it has been lost, here is a [http://www.upubuntu.com/2012/02/how-to-change-reset-lost-mysql-root.html reset tutorial]


:When restoring to a new device, remember to use the root password for the '''receiving''' device, not the machine which created the emr_backup.tar.
   
   
10. Supply the MySQL root password.  If it has been lost, here is a [http://www.upubuntu.com/2012/02/how-to-change-reset-lost-mysql-root.html reset tutorial].
[[File:Restore4.png|center]]
[[File:Restore4.png|center]]



Revision as of 15:59, 19 March 2016

Backup your Installation

Via the Web Interface

OpenEMR gives you a way to backup your data through the Web Interface:

  1. Go to Administration -> Backup
  2. Click the 'Create Backup' button on this page
  3. Save the emr_backup.tar file that it creates

I recommend renaming the file to indicate the date you ran the backup (ex., 'emr_backup_2010-02-18.tar' so that you know what date the backup was run. The tarball will contain the gzipped files openemr.sql.gz and openemr.tar.gz.

Note: The .tar file contains all of the data from your database as well as any scanned documents you have uploaded into OpenEMR. It is, therefore, Protected Health Information (aka PHI) and should be protected just like you would protect any PHI for your agency according to HIPAA and any other applicable guidelines.

Via the CLI

This method is designed to give you the same result as the GUI backup method.

For the following commands, you will need to ssh into the server.

  • ssh into the server
    ssh user@server.com
  • You should also run pwd so that you know what the present working directory is (ie, where you are). If you ssh-ed in as root, then you should be in /root, if you ssh-ed as a user, then you should be in /home/yourusername. You need to know this location for future steps.
    pwd

Get a backup of the database

The following command will dump the database structure and contents into a gzipped file in the present working directory.

  • Run mysqldump and pipe the output to a gzip file
    mysqldump --opt --quote-names -u openemr -p openemr | gzip > openemr.sql.gz
    • The -p is a short form of --password and indicates that mysqldump should prompt you for the password after executing the command. Enter the password when prompted to do so. It will be the password you used when you installed the MySQL database for OpenEMR.
    • The other options for mysqldump inicated above are
      • --opt: optimizes the dump
      • --quote-names puts backticks around the object names
      • -u is a short form of --user and indicates the mysql user account to use when running the commmand (the username follows the option)
      • the 'openemr' before the pipe indicates the name of the database to dump

Stay sshed in the server in order to do the next section.

Get a backup of the openemr folder

The following command will archive and compress the contents of /var/www/openemr and store it in the present working directory alongside the MySQL dump. note that this location may be different for different installation methods.

  • Use tar to create and compress an archive of the openemr folder and store it in the same place you stored your mysql dump file
    tar -C /var/www/openemr/ -zcf openemr.tar.gz ./
    • The options on the tar command above are as follows
      • -C: Change to the stated directory and run tar from there. It accomplishes the same as using cd to move to the stated location and then using cd to come back to the original directory when done.
      • -z: Compress archive using gzip program
      • -c: Create archive
      • -f: Archive File name (ie, the name of the output tarball)
      • -v: Verbose (ie, display progress while creating archive) If you want to see the terminal spit out a list of all the files being archived, you can include this option.

Stay sshed in the server in order to do the next section.

Tar the data and filesystem backups together

  • Use tar to take the files created in the above sections and bind them into one file
    • You can simply name the tar file 'emr_backup.tar' like the GUI process does and then rename the tar later. But why go through another step if you don't have to? You can name the tar file using the conventions mentioned above (ie, emr_backup_[date].tar) when you're making the tar.
    tar -cvf emr_backup.tar openemr.sql.gz openemr.tar.gz
    The options on the tar command above are as follows
    • c: Create archive
    • v: Verbose (i.e display progress while creating archive) If you don't want to see the terminal spit out a list of all the files being archived, you can leave this option out.
    • f: Archive File name

Recovery

1. Restore script can be found in openemr/contrib/util as an executable file.

2. Copy emr_backup.tar and restore script to the home directory.

3. Have the OpenEMR database password (see Step 8 for its location) recorded elsewhere, then delete the openemr web directory.

If not, the password will be lost with the deletion of the web directory.

4. Open Terminal.

5. Issue this command after the dollar sign: sudo ./restore ($ sudo ./restore), 1 space after $ with no space before restore.

This command must be used because it is not possible to run the script by double clicking on the icon.

6. Path to the backup file: /home/<your home directory username>/emr_backup.tar

Restore1.png


7. Answer Y when asked about supplying the site ID.

If the practice has only 1 site, use the default values between the square brackets and hit Enter each time.
Restore2.png


8. The OpenEMR database password can be found in openemr/sites/default/sqlconf.php, if the practice has only 1 site.

12rs.png


Enter the password when prompted.
7rs.png


Understand that there are two passwords for MySQL; one for user, openemr and one for user, root; which is required in the next step. Be certain that the distinction is clear in your mind before you attempt recovery.
With repeat restores to the same database, this step may be skipped; because the password had been stored from a prior recovery.
If the practice has multiple sites, supply the relevant data.
N.B.: If the user is restoring to a new device, he must use the password from the new device, not the old machine. If he uses the credential from the old machine, he will have difficulties logging into the new device.


9. Supply the MySQL root password. If it has been lost, here is a reset tutorial.

When restoring to a new device, remember to use the root password for the receiving device, not the machine which created the emr_backup.tar.
Restore4.png