GNU Health/Control Center

About the GNU Health Control Center edit

The GNU Health Control Center (gnuhealth-control) is the main tool for administrative tasks of the GNU Health environment.

It can perform backups and updates of the instance, and it can be used non-interactively (e.g. as a cron job). We recommend using gnuhealth-control to perform the administrative tasks, since it also creates a log file that will be very useful in case of problems.

Invoking gnuhealth-control edit

The GNU Health Control Center resides in the UTIL directory of your server.

usage: gnuhealth-control command [options]

 Command:
 
   version : Show version
   backup  : Backup the gnuhealth kernel, attach dir and database
   update  : Download and install the patches
   getlang : Get and install / update the language pack code
   status  : Show environment and GNU Health HMIS server status

 Options:

  --backdir  : destination directory for the backup file
  --dry-run  : Check, download and preview, but don't actually run the update process
  --database : database name to use with the backup command

Backups edit

When using gnuhealth-control to perform backups, the application does the following tasks :

  • Perform a backup of the database.
  • Perform a backup of the $HOME directory of the gnuhealth user, so it stores the kernel, rc files, modules and attach directory.

To perform a backup, you call the gnuhealth-control utility with the database name and target directory where you want to store it.

 ./gnuhealth-control backup --backdir <directory> --database <dbname>

GNU Health control backup command creates two files on your destination backup directory :

  • The compressed database dump: The format is : backup_db-name_timestamp.gz
  • The database and filesystems for GNU Health.

Updating GNU Health with gnuhealth-control edit

When gnuhealth-control is invoked with the update command, it will update GNU Health components within the same major number The following components will be checked and updated if necessary:

  • Trytond: Tryton server version
  • Standard Tryton modules included the official GNU Health installation
  • Security Advisories to be applied on the default Tryton kernel
  • GNU Health patchsets (see Patches and Patchsets for more information)

This will be valid for version with the same major and minor numbers, for example 3.0.x will look for the latest Tryton updates and GNU Health updates associated to that release.

Checking for new updates edit

You can check the status on your Tryton and GNU Health server by running a dry-run update. Invoking the update command with the option --dry-run will only check if your server needs to be updated, without doing any changes.

./gnuhealth-control update --dry-run

Installing the updates edit


The main steps are

  1. Stop the instance and make a backup
  2. Run the kernel update with gnuhealth-control tool
  3. Update the database

Once you have stopped your instance, and made a full offline backup, you are ready to perform the actual update.

With the gnuhealth user, execute the following command. It will download all the Tryton and GNU Health patches, and it will reload the bash environment variables right after it.

cdutil
./gnuhealth-control update && source $HOME/.gnuhealthrc

Finally, update your database

cdexe
./trytond-admin --all --database=name_of_your_db

If everything went well, you have updated to the latest Tryton and GNU Health patchset ! You can now restart the server.

You can get the latest version of GNU Health control center at GNU ftp://ftp.gnu.org/gnu/health

Restore edit

GNU Health control center allows you to restore a complete GNU Health instance, including the database and the filesystem. Of course, in order to perform a restore, you need to have a backup. I will concentrate on the backup done with the GNU Health control center.

To restore a database, connect with "gnuhealth" operating system user, and change to the directory where the database backup resides.

1) Create a new database

$ createdb your_db_name

2) Uncompress the database dump that was generated using GNU Health control

$ gunzip backup_db-name_timestamp.gz

3) Restore the DB using psql

$ psql your_db_name < backup_db-name_timestamp