<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title></title>
</head>
<body>
Chris Cormack a &eacute;crit:<br>
<blockquote type="cite" cite="mid20021121213253.GA2887@katipo.co.nz">
  <pre wrap="">On Thu, Nov 21, 2002 at 11:58:44AM -0800, Tonnesen Steve said:
  </pre>
  <blockquote type="cite">
    <pre wrap="">On Thu, 21 Nov 2002, Jim Thomas wrote:</pre>
    <blockquote type="cite">
      <pre wrap="">How do I make backups of koha's mysql database?  Specifically, what
files do I need to make backups of?  
      </pre>
    </blockquote>
    <pre wrap="">In my installation the Koha database files are located in
   /var/lib/mysql/Koha/
Back up everything in that location.  There will be files named biblio.*,
biblioitems.*, items.*, issues.*, reserves.*, etc.</pre>
  </blockquote>
  <pre wrap=""><!---->Another way to do a back up is by using 
mysqldump

mysqldump -uusername -ppassword --add-drop-table Koha &gt; kohabackup.mysql

I run nightly ones of these and then gzip them up.
What we also do for HLT is run mysql replication, so we have a master-slave
relationship set up, so we are doing real time offsite backups.</pre>
</blockquote>
It is STRONGLY NOT RECOMMENDED NOT to do what steve suggest, but to use mysqldump
instead. With new versions of mySQL, (or any other db), you've absolutely
NOT WARRANTY that the tables in file system contains the "uptodate" data.
With transactions coming in 4.x series of mySQL, you're almost sure that
1 backup on 2 will be unuseable.<br>
<br>
However, mysqldump IS the tool you must use.<br>
Take a look at misc/backup.sh in koha <br>
--<br>
Paul
<blockquote type="cite" cite="mid20021121213253.GA2887@katipo.co.nz">
  <pre wrap=""></pre>
</blockquote>
</body>
</html>